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:
This command converts filenames with embedded spaces in the current directory replacing spaces with the underscore ("_") character.
There is 1 alternative - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
this also does the trick:
ls|while read f;do mv "$f" "${f// /_}";doneOr...
for i in *\ *; do mv "$i" $(echo -n "$i" | sed 's/ /_/g'); done
Nice variable substition, elzapp!
Try this:
rename 'y/ /_/' *@goodevilgenius Who'd've thunk it
goodevilgenuius' good suggestion invokes the prename perl script provided by the 'perl' package, at least under Ubuntu/Debian. On my ubuntu system, the rename command is symlinked to prename, and the original, non-perl rename command, which is still useful, is known as rename.ul
See $man prename, $less `which prename` and $man rename.ul for more. :-)
Thanks for the comments. It's a great way to learn fu.
# beforels -1big world keeps turning
bye bye
fred
hello world
ls|while read f;do mv "$f" "${f// /_}";donemv: `fred' and `fred' are the same file
# afterls -1big_world_keeps_turning
bye_bye
fred
hello_world
I think we need a ' | grep " " ' in there.
@mbp no need for a grep, just replace the "ls" with ls "* *"
ls "* *"|while read f;do mv "$f" "${f// /_}";doned'oh mpb even...
@elzapp I admire your intention (to reduce the command line length) but it does not work for me:
ls -1big world keeps turning
bye bye
felicity
hello
two spaces embedded
ls "* *"ls: cannot access * *: No such file or directory
This works (for me):
ls | grep " " | while read f;do mv "$f" "${f// /_}";done# afterls -1big_world_keeps_turning
bye_bye
felicity
hello
two__spaces__embedded
flatcap's version seems the most straightforward to me, and it's the only one that works on my system (Cygwin)
/me takes hat off for "detox". Not only does it sort out spaces, it removes other ugly characters and is recursive.
Very nifty!
http://www.commandlinefu.com/commands/view/1498/iso-8859-1-to-utf-8-safe-recursive-rename
ls|awk '/ /{c=$1; for (i=2;i<=NF;i++) c=c "_" $i; system("mv \"" $0 "\" \"" c "\"")}'@point_to_null switched to "detox" already
http://www.commandlinefu.com/commands/view/1498/iso-8859-1-to-utf-8-safe-recursive-rename