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:
for music file of mp3.zing.vn
There are 2 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
I just submitted an alternative to this, but it does not seem to show up on this page. Does it take a while for alternatives to show up? Sorry, I'm new here. My alternative command was simply:
rename 's/ /-/g' *.mp3@ironcamel: Hi, thank you suggestions command, I'm trying to use it but It doesn't work.
I tested it and it worked fine for me. Do you have the program rename installed?
hi, i dont have install program rename.
below, this is the list song mp3 .
Gui-Ngan-Loi-Yeu-Tuan-Hung.mp3
Heal-The-World-Michael-Jackson.mp3
Khong-Tin-Mot-Som-Mai-Binh-Yen.mp3
Kisses-and-Cake-John-Powell.mp3
Thu-Cuoi-Yanbi-ft.-Mr-T.mp3
Wait-For-You-X4-Band.mp3
I'm trying use command of you.
rename 's/-/\ /g' *.mp3but, It isn't changed.
If you don't have the program rename installed, then you can run this command instead:
perl -e 'for (<*.mp3>) { $old = $_; s/ /-/g; rename $old, $_ }'That should definitely work.
Also, I hope you realize that the mp3 files you listed already have spaces converted to '-'.
or:
for file in *mp3; do mv "$file" "${file//\ /-}"; doneRequires perl 5.14 or greater:
perl -e 'rename $_, s/ /-/gr for <*.mp3>'thanks ok and ironcamel ^_^