Menu

Close
Subscribe
  Subscribe

Terminal

Page 1 of 1

Download a file through an SSH server

Just pipe the file to stdout on the server, and read it from stdin on your workstation.

» Read more

#terminal 10 Nov 2019

All Files and Folders Recursively via Terminal

find . -type f > ../files-all.txt

» Read more

#terminal 7 Mar 2019

All files from subfolders to parent folder

find . -mindepth 2 -type f -print -exec mv {} . \;

» Read more

#terminal 6 Mar 2019

All files in Amazon S3

$ s3cmd ls -r s3://yourbucket/ | awk '{print $4}' > objects_in_bucket

» Read more

#terminal #amazon 6 Mar 2019
Page 1 of 1