#!/bin/bash
echo "Are you sure you want to move this file to the Recycle Bin?" "(Yes/No)"
read ans
case "$ans" in
Yes) echo "$(readlink -f $1)" >> "$HOME/TrashLog" && mv "$1" "$HOME/my-documents/mydir01/Trash" ;;
No) echo "File was NOT deleted and remains. ";;
esac
このスクリプトは、trash
ごみ箱として機能するフォルダにファイルを移動します。私が作成しようとしている2番目のスクリプトは、元のファイルの場所(TrashLog
ファイルパスとして保存)を取得してファイルを元の場所に復元することです。これまで私がしたことは次のとおりです(動作しません)。
#!/bin/bash
restore=$(find my-documents/* | grep $1)
filename=$(readlink -f $restore)
mv -i "$filename" "$(grep $1 $HOME/TrashLog)"