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 this example, all files in the current directory that end in '.xml.skippy' will have the '.skippy' removed from their names.
There are 6 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
"rename"
Not on Mac OS X.
Scary :)
rename 's|.skippy||' *.xml.skippyTake care Archlinux users, Arch implements something different. Follow this thread to change that like most of the modern systems : http://bbs.archlinux.org/viewtopic.php?id=32937
Better:
for f in *.xml.skippy; do mv "$f" "${f/.skippy/}"; done@argherna
You can install rename, that's "only" a perl script, wrote by Larry Wall himself ( perl dad ), see http://search.cpan.org/CPAN/authors/id/P/PE/PEDERST/rename-1.6.tar.gz or just download it there http://www.sputnick-area.net/scripts/rename
@eightmillion
Try that in pure bash ;)
rename -v 's/\w+\.(\dx\d+)\.(.+)\.german.*\.(\w{3,})/$1 - $2.$3/' *@sputnick
I love a challenge. This isn't perfect, but it's pretty close and can be refined further.
for i in *;do if [[ $i =~ [[:alpha:]]+\.[[:digit:]]x[[:digit:]]+\..+\.german.*\.[[:alpha:]]3? ]];then x="${i#*.}";x="${x%%.*}";y="${i#*.*.}";y="${y%%.*}";mv "$i" "$x - $y.${i##*.}";echo "$i renamed as $x - $y.${i##*.}";fi;doneI should also note that my previous comment wasn't in response to yours, if that wasn't clear. It was in response to the original posting.
@eightmillion - will give yours a try
@sputnick - was looking for a way to do the job w/out needing to install anything extra. it gets the job done--a usable one-off for small numbers of files in a directory.
Sorry argherna but your snippet seems odd.
eightmillion one is quite better in the way you describes :
for f in *.xml.skippy; do mv "$f" "${f/.skippy/}"; doneSee useless use of ls : http://www.partmaps.org/era/unix/award.html#ls
And in general http://www.partmaps.org/era/unix/award.html there's good caveats to avoid problem in shell programming.
Moreover, parameter expansions are less overkill than sed in that simple case. See http://www.gnu.org/software/bash/manual/bashref.html#index-parameter-expansion-85
The backquote (`) is used in the old-style command substitution, e.g. foo=`command`. This syntax is deprecated in favor of foo=$(command). Backslash handling inside $() is less surprising, and $() is easier to nest. See http://mywiki.wooledge.org/BashFAQ/082
There is one small problem with my version that should probably be changed. "${f/.skippy/}" will strip the first instance of ".skippy" in the filename which would be problematic for files named foo.skippy.xml.skippy. "${f%.skippy}" will only strip ".skippy" from the end of the file name.
All excellent feedback. Thanks for the pointers. Much appreciated.
Maybe 'mmv' is available on Mac OS X?
mmv '*.skippy' '#1'@hfs - it is not.