Perl one liner executing a shell command on…

Perl one liner executing a shell command on files.

e.g. copy all *.c files to new names, *.R.

perl -de 'foreach (@ARGV) {($new = $_) =~ s/c$/R/; system("cp $_ $new");}' *c

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *