⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex57.sh

📁 Shall高级编程
💻 SH
字号:
#!/bin/bash# badname.sh# Delete filenames in current directory containing bad characters.for filename in *do  badname=`echo "$filename" | sed -n /[\+\{\;\"\\\=\?~\(\)\<\>\&\*\|\$]/p`# badname=`echo "$filename" | sed -n '/[+{;"\=?~()&lt;&gt;&*|$]/p'`  also works.# Deletes files containing these nasties:     + { ; " \ = ? ~ ( ) < > & * | $#  rm $badname 2>/dev/null#             ^^^^^^^^^^^ Error messages deep-sixed.done# Now, take care of files containing all manner of whitespace.find . -name "* *" -exec rm -f {} \;# The path name of the file that _find_ finds replaces the "{}".# The '\' ensures that the ';' is interpreted literally, as end of command.exit 0#---------------------------------------------------------------------# Commands below this line will not execute because of _exit_ command.# An alternative to the above script:find . -name '*[+{;"\\=?~()&lt;&gt;&*|$ ]*' -maxdepth 0 \-exec rm -f '{}' \;#  The "-maxdepth 0" option ensures that _find_ will not search#+ subdirectories below $PWD.# (Thanks, S.C.)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -