mirror of https://github.com/fengyuhetao/shell.git
9 lines
104 B
Plaintext
9 lines
104 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
for (( i=1; i<=4; i++ ))
|
||
|
do
|
||
|
touch $i.sh
|
||
|
chmod 764 $i.sh
|
||
|
echo "#!/bin/bash" > $i.sh
|
||
|
done
|