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:
uuencode the file to appear as an attachment
There are 5 alternatives - vote for the best!
Send it the easy way, with MIME and everything handled for you by an app that knows best.
Another way of sending an attachment.
-s : subject
file : file to be sent
This just reads in a local file and sends it via email. Works with text or binary. *Requires* local mail server.
If you can do better, submit your command here.
You must be signed in to comment.
In what package is uuencode ? I don't have it installed on my Ubuntu ...
why you don't use the "-a" switch from mail/nail/mutt binary?
echo "see attached file" | mail -a filename -s "subject" email@address
it depends on some distributions if the -a switch is available.
gnpf
@CodSpirit this should help you : http://ubuntuforums.org/showthread.php?t=44147 but have a look at the second comment.
@gnpf : 'cos on the aix/sun/hp on which i'm working haven't the recent version. so no mutt, old mail. My command isn't the best way, but it's the best one when you dont have recent or fresh *nix install
Useless use of cat
uuencode filename filename | mail -s "Email subject" user@example.com@CodSpirit uuencode is included in the sharutils package on Ubuntu; used to be part of uucp.
@arcege yes you're right but it never work for me :-(