标签: bash shell console terminal
如何编写一个Bash脚本,它将选择~/test内.css扩展名内的所有文件,以便我可以逐个管道进一步操作?
~/test
.css
答案 0 :(得分:1)
#!/bin/bash for f in ~/test/*.css do # your command 'cmd' cmd "$f" done
要为一行中的每个.css文件处理命令,请尝试以下操作:
find ~/test -type f -name '*.css' -execdir cmd {} \+