commandlinefu.com is the place to record those command-line gems that you return to again and again.
Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/
You can sign-in using OpenID credentials, or register a traditional username and password.
First-time OpenID users will be automatically assigned a username which can be changed after signing in.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
it compresses the files and folders to stdout, secure copies it to the server's stdin and runs tar there to extract the input and output to whatever destination using -C. if you emit "-C /destination", it will extract it to the home folder of the user, much like `scp file user@server:`.
the "v" in the tar command can be removed for no verbosity.
There are 2 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
This can be more succinct if you have rsync.
Secure remote copy with default compression:
rsync -rptlvz -e ssh path1 path2 user@host:pathSecure remote copy with configurable compression FTW:
rsync -rptlv --compress-level 9 -e ssh path1 path2 user@host:path@laburu I don't understand your example.. Could you break it down further?
I was needing to copy over a large data file from a remote machine to my local one and I wanted to compress it, so I just used the command:
rsync -Pz user@host:/path/file.name .And in case you don't need to untar the file at the other end:
tar zcvf - folder | ssh user@server "cat > /backup/folder.tar.gz"