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:
the middle command between the ; and ; is the vi commands that insert that line into the last line of the file, the esc with the carets is literally hitting the escape key, you have to have the smbfs package installed to do it, I use it to access my iTunes music on my mac from my linux PC's with amarok so I can play the music anywhere in the house. among other things, it allows you to access the files on that share from your computer anytime you're on that network.
There are 2 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
Shorter and non-interactive
echo "//smb-share/gino /mnt/place smbfs defaults,username=gino,password=pass 0 0" |sudo tee -a /etc/fsstab ;mount /mnt/placeAlso, it's unwise to store passwords in a world-readable file. One way to fix this is to remove the world-readable part (not advised)
sudo chmod o-r /etc/fstaband a better way is to instead use the credentials parameter. For this save the username and pass in a file:
echo -e "username=gino\npassword=pass">~/.smb.credentials ;chmod go-x ~/.smb.credentialsand then use this line in fstab instead.
echo "//smb-share/gino /mnt/place smbfs defaults,credentials=/home/$USER/.smb.credentials 0 0" |sudo tee -a /etc/fsstab ;mount /mnt/placeThis way your username and password is tucked away in your home dir. Note however, that it's still in plaintext, and any user with root access can still view it.
A more secure method is to use smb4k or another user-space program that stores passwords encrypted, although it's not quite as seamless. Nonetheless, session managers tend to work out ok figuring these bits out, and symlinks make it relatively painless, without exposing a password.
TYPO: i typed fsstab on accident. Sorry about that.
I was wondering how to fix that actually... that bothered me too. also, I did the interactive command because in my experience, using
echo "This is my sentence" > myFilecauses "myFile" to be overwritten with just that sentence. I don't know why bash is behaving like that, it just does.... unless that's why you piped to sudo tee rather than piped stdout to fstab.