ユーザーが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)