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:
When you have different digital cameras, different people, friends and you want to merge all those pictures together, then you get files with same names or files with 3 and 4 digit numbers etc. The result is a mess if you copy it together into one directory.
But if you can add an offset to the picture number and set the number of leading zeros in the file name's number then you can manage.
OFFS != 0 and LZ the same as the files currently have is not supported. Or left as an exercise, hoho ;)
I love NF="${NF/#+(0)/}",it looks like a magic bash spell.
There are 10 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
I get error messages on one group and overwriting the same file over and over again in another instance.
Error message:
bash: 02411_lifesaver_1920x1200: value too great for base (error token is "02411_lifesaver_1920x1200")
Overwriting:
`img00001.jpg' -> `000030.jpg'
mv: overwrite `000030.jpg'? y
`img00002.jpg' -> `000030.jpg'
mv: overwrite `000030.jpg'? y
`img00003.jpg' -> `000030.jpg'
mv: overwrite `000030.jpg'? ^C
Also I am not sure what the result must be.
I rename stuff with
ls *.jpg| awk '{ printf("mv '\''%s'\'' %04d-one.jpg\n", $0, ++j) }' | shThe -one part can be different, removed or moved to the front of the numbers
Hello Houghi,
you did not understand my one liner before using it, did you ;) ?
It will work on files with names made of digits only, otherwise the offset will not work => NF=$[NF+OFFS], because it uses an addition.
If you files look have names like img00001.jpg, img00002.jpg, etc, then convert those file names to digits only like this:
for file in img*.jpg ; do mv -iv "$file" ${file#img} ; done
If you are unsure of what the command actually does put an echo before the mv -iv part like this:
for file in img*.jpg ; do echo mv -iv "$file" ${file#img} ; done
That will remove the leading "img" part of the file name.
Cheers