Shell脚本将目录中的所有文件复制到指定的文件夹

时间:2013-07-31 13:51:03

标签: shell unix loops sh cp

我是shell脚本的新手,我正在试图找到一种方法来编写一个脚本,将当前目录中的所有文件复制到.txt文件中指定的目录中,如果有匹配的名称,它将FileName_YYYYMMDDmmss形式的当前日期添加到要复制的文件的名称中,以防止覆盖。

有人能帮助我吗?

我看到了

的思路
#!/bin/bash

source=$pwd          #I dont know wheter this actually makes sense I just want to
                     #say that my source directory is the one that I am in right now

destination=$1       #As I said I want to read the destination off of the .txt file

for i in $source     #I just pseudo coded this part because I didn't figure it out.   
do
   if(file name exists)
   then 
       copy by changing name
   else
       copy
   fi
done   

问题是我不知道如何检查名称是否存在并同时复制和重命名。

由于

2 个答案:

答案 0 :(得分:2)

我想这就是你要找的东西:

#!/bin/bash

dir=$(cat a.txt)

for i in $(ls -l|grep -v "^[dt]"|awk '{print $9}')
do
    cp $i $dir/$i"_"$(date +%Y%m%d%H%M%S)
done

我假设 a.txt 只包含目标目录的名称。如果还有其他条目,则应在第一个语句中添加一些过滤器(使用grep或awk)。

注意:我使用全时戳(YYYYMMDDHHmmss)代替你的YYYYMMDDmmss,因为它似乎不合逻辑。

答案 1 :(得分:2)

这个怎么样?我假设目标目录在 提交new_dir.txt。

    #!/bin/bash

    new_dir=$(cat new_dir.txt)
    now=$(date +"%Y%m%d%M%S")

    if [ ! -d $new_dir ]; then
            echo "$new_dir doesn't exist" >&2
            exit 1
    fi

    ls | while read ls_entry
    do
            if [ ! -f $ls_entry ]; then
                    continue
            fi  
            if [ -f $new_dir/$ls_entry ]; then
                    cp $ls_entry $new_dir/$ls_entry\_$now   
            else
                    cp $ls_entry $new_dir/$ls_entry
            fi  
    done