我想编写一个脚本,允许用户输入特定的文件路径和大小以用作 find 命令的输入。
我尝试了以下方法:
echo "Enter file path and size":
read userpath
read sz
find $userpath -size $sz -exec rm {} \;
但这会导致错误
( find: invalid argument '-exec' to -size)
我想编写一个脚本,允许用户输入特定的文件路径和大小以用作 find 命令的输入。
我尝试了以下方法:
echo "Enter file path and size":
read userpath
read sz
find $userpath -size $sz -exec rm {} \;
但这会导致错误
( find: invalid argument '-exec' to -size)