Bash One Liner:将模板_ * .txt复制到foo _ * .txt?

时间:2008-08-25 17:18:50

标签: bash

说我有三个文件(模板_ * .txt):

  • template_x.txt
  • template_y.txt
  • template_z.txt

我想将它们复制到三个新文件(foo _ * .txt)。

  • foo_x.txt
  • foo_y.txt
  • foo_z.txt

使用一个命令是否有一些简单的方法可以做到这一点,例如

cp --enableAwesomeness template_*.txt foo_*.txt

8 个答案:

答案 0 :(得分:11)

for f in template_*.txt; do cp $f foo_${f#template_}; done

答案 1 :(得分:3)

[01:22 PM] matt@Lunchbox:~/tmp/ba$
ls
template_x.txt  template_y.txt  template_z.txt

[01:22 PM] matt@Lunchbox:~/tmp/ba$
for i in template_*.txt ; do mv $i foo${i:8}; done

[01:22 PM] matt@Lunchbox:~/tmp/ba$
ls
foo_x.txt  foo_y.txt  foo_z.txt

答案 2 :(得分:3)

我的首选方式:

for f in template_*.txt
do
  cp $f ${f/template/foo}
done

“I-not-remember-the-substitution-syntax”方式:

for i in x y z
do
  cp template_$i foo_$
done

答案 3 :(得分:2)

这应该有效:

for file in template_*.txt ; do cp $file `echo $file | sed 's/template_\(.*\)/foo_\1/'` ; done

答案 4 :(得分:1)

我不知道bash或cp中的任何内容,但有一些简单的方法可以使用(例如)perl脚本来执行此类操作:

($op = shift) || die "Usage: rename perlexpr [filenames]\n";

for (@ARGV) {
    $was = $_;
    eval $op;
    die $@ if $@;
    rename($was,$_) unless $was eq $_;
}

然后:

rename s/template/foo/ *.txt

答案 5 :(得分:1)

for i in template_*.txt; do cp -v "$i" "`echo $i | sed 's%^template_%foo_%'`"; done

如果您的文件名中包含时髦的字符,可能会中断。当(如果)你确信它可靠地工作时,删除'-v'。

答案 6 :(得分:1)

为此任务创建了mmv(在DebianFink中可用或易于编译)命令。使用简单的Bash解决方案,我总是要查找有关变量扩展的文档。但是mmv使用起来要简单得多,非常接近“令人敬畏”! ; - )

你的例子是:

mcp "template_*.txt" "foo_#1.txt"

mmv也可以处理更复杂的模式,并且它有一些健全性检查,例如,它将确保目标集中的所有文件都不会出现在源集中(因此您不会意外覆盖文件)。

答案 7 :(得分:0)

另一种方法:

$ ls template_*.txt | sed -e 's/^template\(.*\)$/cp template\1 foo\1/' | ksh -sx

我一直对ImageMagick convert程序印象深刻,该程序可以满足您对图像格式的期望:

$ convert rose.jpg rose.png

它有一个允许批量转换的姐妹程序:

$ mogrify -format png *.jpg

显然,这些仅限于图像转换,但它们具有有趣的命令行界面。