我想删除文件夹中的所有内容,包括文件夹,但两个文件除外。为此,为什么要使用这个脚本:
#!/usr/bin/env bash
shopt -s extglob
rm !(file1|file2)
哪个有效,但当我尝试在案例中执行时:
#!/usr/bin/env bash
read -r -p "Do you want remove everything \
[y/N]: " response
case $response in
[yY][eE][sS]|[yY])
shopt -s extglob
rm !(file1|file2)
;;
*)
printf "Aborting"
;;
esac
这将会发生:
test.sh: line 9: syntax error near unexpected token `('
test.sh: line 9: `rm !(file1|file2)'
我想知道为什么这个,更重要的是,如何解决:)
答案 0 :(得分:2)
将shopt
保留在脚本开头:
#!/usr/bin/env bash
shopt -s extglob
read -r -p "Do you want remove everything [y/N]: " response
case $response in
[yY][eE][sS]|[yY])
echo rm !(list.txt|file2)
;;
*)
printf "Aborting"
;;
esac
答案 1 :(得分:1)
你可以这么简单地做到这一点。
#!/usr/bin/env bash
# Here you can insert the confirmation part.
f1=file1
f2=file2
mv "$f1" "/tmp/${f1}$$" #move f1 to /tmp
mv "$f2" "/tmp/${f2}$$" #move f2 to /tmp
rm -r ./* #remove everything there is. -r means recursive.
mv "/tmp/${f1}$$" "${f1}" #move f1 and f2 back
mv "/tmp/${f2}$$" "${f2}"
这非常简单,因此必须从相关目录运行脚本。