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 will replace all the spaces in all the filenames of the current directory with underscores. There are other commands that do this here, but this one is the easiest and shortest.
There are 3 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
It should be noted that this "rename," while in Perl and portable, is not the standard rename utility on most systems.
It depends on what you mean by "most systems." Specifically, at least under debian/ubuntu linux, on systems with perl installed, the /usr/bin/prename perl script (to which is being referred) overrides the util-linux rename command. To explicitly invoke either (again, on debian/ubuntu) the perl variant is named prename, and the util-linux (likely dfego's default) may be invoked is /usr/bin/rename.ul .
to do this purely in bash:
for file in *;do mv $file ${file// /_};doneOkay, not entirely purely, since the mv command is not a part of bash, but at least it would work without the rename.pl
Deja vu! rename overload! :-)
Doesn't anyone bother to grep the archive before posting command lines any more?
I did grep the archive before I posted this and I did see several other commands that do the same as this one. However, this is, by far, the simplest and least complex command to date on here. So I thought I would drop it in. This is the first command I've submitted and it got into the "Hot this week" category! Yay!
This depends on the Perl 'prename' command to be installed -- popular on Debian-based distributions, where /usr/bin/rename is a link to this file. The POSIX version of 'rename' doesn't do regular expressions, only one-time substring matches. 'rename oldstring newstring list_of_files' I.E.:
rename .htm .html *.htm
Funny enough,
ls -1 | while read file; do new_file=$(echo $file | sed s/\ //g); mv "$file" "$new_file"; doneis the only command that actually works for me on a a CentOS 5.6 machine.
the zsh eq would be:
zmv '* *' '$f:gs/ /_'