私は入力として*を取得するbashで関数を書きました。そのため、その特定のディレクトリ内のすべてのファイルをリストする必要があります。しかしそうではありません。 これが私が書いたものです:
# a function that mass deletes files in a directory but asks before deleting
yrm()
{
echo "The following files are going to be deleted:"
ls "${1}"
read -e -n 1 -p "Do you want to delete these files? Y/n" ANSWER
${ANSWER:="n"} 2> /dev/null
if [ $ANSWER == "Y" ]
then
rm $1
else
echo "aborted by user"
fi
}
しかし、私はこれらのファイルでそれをテストしました:
l1zard@Marvin:~/.rclocal/test$ ls *
test1.txt test2.txt test3.txt test5.txt test7.txt test8.txt test9.txt testm7m767.txt
そして私は私の関数からこの出力を得ます:
l1zard@Marvin:~/.rclocal/test$ yrm *
The following files are going to be deleted:
test1.txt
Do you want to delete these files? Y/nn
aborted by user
ファイルが正しく表示されるように修正するにはどうすればよいですか。