Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to go through a bunch of directories and rename all files that end in _test.rb to end in _spec.rb instead. It's something I've never quite figured out how to do with bash so this time I thought I'd put some effort in to get it nailed. I've so far come up short though, my best effort is:

find spec -name "*_test.rb" -exec echo mv {} `echo {} | sed s/test/spec/` \;

NB: there's an extra echo after exec so that the command is printed instead of run while I'm testing it.

When I run it the output for each matched filename is:

mv original original

i.e. the substitution by sed has been lost. What's the trick?

share|improve this question
BTW, I'm aware that there's a rename command but I'd really like to figure out how to do it using sed so that I can do more powerful commands in the future. – opsb Jan 25 '11 at 13:10
Please don't cross-post. – Dennis Williamson Jan 25 '11 at 20:36

10 Answers

up vote 6 down vote accepted

This happens because sed receives the string {} as input, as can be verified with:

find . -exec echo `echo "{}" | sed 's/./foo/g'` \;

which prints foofoo for each file in the directory, recursively. The reason for this behavior is that the pipeline is executed once, by the shell, when it expands the entire command.

There is no way of quoting the sed pipeline in such a way that find will execute it for every file, since find doesn't execute commands via the shell and has no notion of pipelines or backquotes. The GNU findutils manual explains how to perform a similar task by putting the pipeline in a separate shell script:

#!/bin/sh
echo "$1" | sed 's/_test.rb$/_spec.rb/'

(There may be some perverse way of using sh -c and a ton of quotes to do all this in one command, but I'm not going to try.)

share|improve this answer
Great explanation, cheers – opsb Jan 25 '11 at 15:14
8  
For those wondering about the perverse usage of sh -c here it is: find spec -name "*_test.rb" -exec sh -c 'echo mv "$1" "$(echo "$1" | sed s/test.rb\$/spec.rb/)"' _ {} \; – opsb Jan 31 '11 at 22:15
Thanks @opsb! this worked for me. – georg Oct 28 '12 at 22:55

you might want to consider other way like

for file in $(find . -name "*_test.rb")
do 
  echo mv $file `echo $file | sed s/_test.rb$/_spec.rb/`
done
share|improve this answer
That does look like a good way to do it. I'm really looking to crack the one liner though, to improve my knowledge more than anything else. – opsb Jan 25 '11 at 13:34

You mention that you are using bash as your shell, in which case you don't actually need find and sed to achieve the batch renaming you're after...

Assuming you are using bash as your shell:

$ echo $SHELL
/bin/bash
$ _

... and assuming you have enabled the so-called globstar shell option:

$ shopt -p globstar
shopt -s globstar
$ _

... and finally assuming you have installed the rename utility (found in the util-linux-ng package)

$ which rename
/usr/bin/rename
$ _

... then you can achieve the batch renaming in a bash one-liner as follows:

$ rename _test _spec **/*_test.rb

(the globstar shell option will ensure that bash finds all matching *_test.rb files, no matter how deeply they are nested in the directory hierarchy... use help shopt to find out how to set the option)

share|improve this answer
+1, rename is just so much cleaner than find + sed. – l0b0 Jan 27 '11 at 15:39

You can do it without sed, if you want:

for i in `find -name '*_test.rb'` ; do mv $i ${i%%_test.rb}_spec.rb ; done

${var%%suffix} strips suffix from the value of var.

or, to do it using sed:

for i in `find -name '*_test.rb'` ; do mv $i `echo $i | sed 's/test/spec/'` ; done
share|improve this answer
this does not work (the sed one) as explained by the accepted answer. – Ali Nov 5 '12 at 15:49
@Ali, It does work--I tested it myself when I wrote the answer. @larsman's explanation does not apply to for i in... ; do ... ; done, which executes commands via the shell and does understand backtick. – Wayne Conrad Nov 5 '12 at 18:48

To solve it in a way most close to the original problem would be probably using xargs "args per command line" option:

find . -name *_test.rb | sed -e "p;s/test/spec/" | xargs -n2 mv

It finds the files in the current working directory recursively, echoes the original file name (p) and then a modified name (s/test/spec/) and feeds it all to mv in pairs (xargs -n2). Beware that in this case the path itself shouldn't contain a string test.

share|improve this answer
Thank you sooooo much for this! – zeflasher Apr 17 at 5:14

I find this one shorter

find . -name '*_test.rb' -exec bash -c 'echo mv $0 ${0/test.rb/spec.rb}' {} \;
share|improve this answer
Hi, I think '*_test.rb" should be '*_test.rb' (double quote to single quote). Can I ask why you're using the underscore to push the argument you want to position $1 when it seems to me that find . -name '*_test.rb' -exec bash -c 'echo mv $0 ${0/test.rb/spec.rb}' {} \; works? As would find . -name '*_test.rb' -exec bash -c 'echo mv $1 ${1/test.rb/spec.rb}' iAmArgumentZero {} \; – agtb Oct 16 '11 at 14:05
Thanks for your suggestions, fixed – csg Oct 16 '11 at 16:27
Thanks for clearing that up - I only commented because I spent a while pondering the meaning of _ thinking it was maybe some trick use of $_ ('_' is pretty hard to search for in docs!) – agtb Oct 16 '11 at 16:41

if you have Ruby (1.9+)

ruby -e 'Dir["**/*._test.rb"].each{|x|test(?f,x) and File.rename(x,x.gsub(/_test/,"_spec") ) }'
share|improve this answer

In ramtam's answer which I like, the find portion works OK but the remainder does not if the path has spaces. I am not too familiar with sed, but I was able to modify that answer to:

find . -name "*_test.rb" | perl -pe 's/^((.*_)test.rb)$/"\1" "\2spec.rb"/' | xargs -n2 mv

I really needed a change like this because in my use case the final command looks more like

find . -name "olddir" | perl -pe 's/^((.*)olddir)$/"\1" "\2new directory"/' | xargs -n2 mv
share|improve this answer
$ find spec -name "*_test.rb"
spec/dir2/a_test.rb
spec/dir1/a_test.rb

$ find spec -name "*_test.rb" | xargs -n 1 /usr/bin/perl -e '($new=$ARGV[0]) =~ s/test/spec/; system(qq(mv),qq(-v), $ARGV[0], $new);'
`spec/dir2/a_test.rb' -> `spec/dir2/a_spec.rb'
`spec/dir1/a_test.rb' -> `spec/dir1/a_spec.rb'

$ find spec -name "*_spec.rb"
spec/dir2/b_spec.rb
spec/dir2/a_spec.rb
spec/dir1/a_spec.rb
spec/dir1/c_spec.rb
share|improve this answer
Ah..i am not aware of a way to use sed other than putting the logic in a shell script and call that in exec. didnt see the requirement to use sed initially – Damodharan R Jan 25 '11 at 14:18

Your question seems to be about sed, but to accomplish your goal of recursive rename, I'd suggest the following, shamelessly ripped from another answer I gave here:recursive rename in bash

#!/bin/bash
IFS=$'\n'
function RecurseDirs
{
for f in "$@"
do
  newf=echo "${f}" | sed -e 's/^(.*_)test.rb$/\1spec.rb/g'
    echo "${f}" "${newf}"
    mv "${f}" "${newf}"
    f="${newf}"
  if [[ -d "${f}" ]]; then
    cd "${f}"
    RecurseDirs $(ls -1 ".")
  fi
done
cd ..
}
RecurseDirs .
share|improve this answer
you have en extraneous fi in there – glenn jackman Oct 16 '11 at 12:44
@glennjackman - you are correct! Thanks. – dreynold Oct 17 '11 at 13:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.