用户在 centos 7 脚本中输入路径和大小作为变量

用户在 centos 7 脚本中输入路径和大小作为变量

我想编写一个脚本,允许用户输入特定的文件路径和大小以用作 find 命令的输入。

我尝试了以下方法:

echo "Enter file path and size":
read userpath
read sz
find $userpath -size $sz -exec rm {} \;

但这会导致错误

( find: invalid argument '-exec' to -size)

相关内容