我是 Linux 新手,我编写了一个脚本来将文件移动到指定文件夹(假删除)。
但是它只会mv
删除与我的脚本位于同一文件夹中的文件。有没有办法让这个可执行文件删除任何文件,无论文件位于何处?
IE:
删除测试..(测试在~/my-documents文件夹中)(删除~/my-applications/bin文件夹中的脚本)
脚本如下。
echo do you want to delete this? (yes/no) \n
read ans \n
case "$ans" in
Y¦y¦yes ) echo "$readlink -f "$1")" >>"$HOME/DustbinLog" && mv "$1" "$HOME/my-applications/bin/dustbin";;
N¦n¦no echo "File not moved!";;
esac
答案1
我只需要在密码下执行 DELETE 命令或输入准确的路径名..谢谢..