Tôi đã viết một hàm trong bash lấy * làm đầu vào và do đó sẽ liệt kê tất cả các tệp trong thư mục particualar đó. nhưng không. Đây là những gì tôi đã viết:
# 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
}
Tuy nhiên tôi đã thử nó với các tệp này:
l1zard@Marvin:~/.rclocal/test$ ls *
test1.txt test2.txt test3.txt test5.txt test7.txt test8.txt test9.txt testm7m767.txt
và tôi nhận được đầu ra này từ chức năng của mình:
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
Làm thế nào tôi có thể sửa nó để nó liệt kê các tập tin như mong đợi?