web-dev-qa-db-ja.com

bashでファイルを移動するときにタイムスタンプを追加する

#!/bin/bash
while read server <&3; do   #read server names into the while loop    
 if [[ ! $server =~ [^[:space:]] ]] ; then  #empty line exception
    continue
 fi   
echo "Connecting to - $server"
#ssh "$server"  #SSH login
    while read updatedfile <&3 && read oldfile <&4; do     
        echo Comparing $updatedfile with $oldfile
        if diff "$updatedfile" "$oldfile" >/dev/null ; then
            echo The files compared are the same. No changes were made.
        else
            echo The files compared are different.
            # copy the new file and put it in the right location
            # make a back up of the old file and put in right location (time stamp)
            # rm the old file (not the back up)
            #cp -f -v $newfile

                mv $oldfile /home/u0146121/backupfiles/$oldfile_$(date +%F-%T)

        fi 

    done 3</home/u0146121/test/newfiles.txt 4</home/u0146121/test/oldfiles.txt
done 3</home/u0146121/test/servers.txt

これが私のスクリプト全体です

mv $oldfile /home/u0146121/backupfiles/$_$(date +%F)

これによりファイルは正しく移動されますが、実際のファイル名は削除され、日付が追加されるだけです。元のファイル名を保持し、現在の日付をファイル名に追加したい。

4
mkrouse

mv $oldfile $dest_dir/$oldfile_$(date +%F-%T)を試してください。

mv $oldfile /home/u0146121/backupfiles/$_$(date +%F)は、$oldfileをファイル名で手動で置き換えた場合、1行で機能しますが、変数$oldnameを具体的に参照している場合、$$oldfileを引数としてスキップし、履歴に戻って最後の引数を取得します。

6
aetimmes