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:
Used for moving stuff around on a fileserver
If you can do better, submit your command here.
You must be signed in to comment.
sweet. i've made it a function in all my .bash_profiles.
function lmv(){
[ -e $1 -a -e $2 ] && mv $1 $2 && ln -s $2/$(basename $1) $(dirname $1);
}
It only works, if $2 is a directory, though.
Also does not play nice with files that have spaces or meta-characters in the names.
Always _quote_ the variables!
from AlvinaSimpson over on lifehacker.com:
lmv() { [ -e "$1" -a -e "$2" ] && mv "$1" "$2" && ln -s "$2"/"$(basename "$1")" "$(dirname "$1")"; }Me, I'd add one more bit and say go from
[ -e "$1" -a -e "$2" ]to
[ -e "$1" -a -d "$2" ]and from
mv "$1" "$2"to
mv "$1" "$2"/That should take care of any accidental file overwrites from trying to use wildcards with this command as it requires $2 be a directory and appends a trailing / so we don't accidentally try to overwrite the directory $2
By default, you shouldn't be trying to symlink when you do this; you only need to use symlinks when you're going from one physical drive to another.
The files that we see in the filesystem are pointers to the actual data on the drive. By creating a hard link, we have two real pointers to the same data; if one is removed, the other exists still, and the data is still "found" by the filesystem. If the original hardlink disappears but the symlink still exists, the symlink won't work.
When trying to do a "safe move" using links, hard links is what you should use.
great suggestions for improving the function! i love this place!
Any recommendations to make this usable on directories with spaces or special characters? I want to use it to relocate bittorrent files regularly to another disk and they rarely have proper filenames.
by recommendations I mean a simpler way than writing/stealing code to escape all the special characters. I'm lazy and slow!
lmv(){for a in ${@:1:$(expr $#-1)};do [ -e "$a" -a -e "${@:$#:1}" ] && mv "$a";"${@:$#:1}" && ln -s "${@:$#:1}"/"$(basename "$a")";"$(dirname "$a")";done}for multiple folders (e.g. lmv files/* newfolder would move file/* to newfolder while symlinking them)
lmv(){for a in ${@:1:$(expr $#-1)};do [ -e "$a" -a -e "${@:$#}" ] && mv "$a";"${@:$#}" && ln -s "${@:$#}"/"$(basename "$a")";"$(dirname "$a")";done}