Download a file through an SSH server
Just pipe the file to stdout on the server, and read it from stdin on your workstation.
Just pipe the file to stdout on the server, and read it from stdin on your workstation.
find . -type f > ../files-all.txt
find . -mindepth 2 -type f -print -exec mv {} . \;
$ s3cmd ls -r s3://yourbucket/ | awk '{print $4}' > objects_in_bucket