如何将文本添加到同一行?

时间:2009-11-21 02:16:27

标签: linux unix shell

我使用此命令查找mp3文件并在log.txt上写下他们的名字:

find -name *.mp3 >> log.txt

我想使用mv命令移动文件,我想将其附加到日志文件,以便它可以显示文件移动的路径。

例如,如果mp3文件是1.mp3和2.mp3,那么log.txt应该看起来像

1.mp3 >>>> /newfolder/1.mp3 

2.mp3 >>>> /newfolder/2.mp3

如何使用unix命令执行此操作?谢谢!

3 个答案:

答案 0 :(得分:3)

仅使用移动:

mv -v *.mp3 tmp/ > log.txt

或使用find:

find -name '*.mp3' -exec mv -v {} test/ >> log.txt \;

答案 1 :(得分:1)

你应该使用像Perl或Python这样的脚本语言; shell中的文本处理相当尴尬。

E.g。在Perl中,您可以对find的输出进行后处理,并打印出您所做的事情。

#!/usr/bin/perl -w

use strict;
use File::Find;

my @directories_to_search=("/tmp/");

sub wanted {
  print "$File::Find::name >>> newdir/$_\n";
  # do what you want with the file, e.g. invoke commands on it using system()
}

find(\&wanted, @directories_to_search);

使用Perl或类似方法,比shell更容易;特别是处理有趣的文件名(嵌入空格,特殊字符)更容易。但是在调用syste()命令时要小心。

对于File :: Find模块上的文档,请参阅http://perldoc.perl.org/File/Find.html

答案 2 :(得分:1)

GNU find

find /path -type f -iname "*.mp3" -printf "%f/%p\n" | while IFS="/" -r read filename path
do 
    mv "$path" "$destination"
    echo "$filename >>> $destination/$filename "  > newfile.txt
done

输出

$ touch 'test"quotes.txt'
$ ls -ltr
total 0
-rw-r--r-- 1 root root 0 2009-11-20 10:30 test"quotes.txt
$ mkdir temp
$ ls -l temp
total 0
$ find . -type f -iname "*\"*" -printf "%f:%p\n" | while IFS=":" read filename path; do mv "$filename" temp ; done
$ ls -l temp
total 0
-rw-r--r-- 1 root root 0 2009-11-20 11:53 test"quotes.txt