Think before you speak, read before you think.

shell逐行读取

把需要改权限为777的目录写到test.txt里

每行一个

然后在chmod.sh里加入如下内容

#!bin/bash
while read LINE
do
 chmod 777 $LINE
done < $1

执行

bash chmod.sh test.txt


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *