#!/bin/bash sum=0 for i in {2..100} do is_prime=1 for ((j=2; j<i; j++)) do if [ $((i % j)) -eq 0 ] then is_prime=0 break fi done if [ $is_prime -eq 1 ] then sum=$((sum + i)) fi done echo"The sum of prime numbers from 1 to 100 is: $sum"
打印给定目录下的文件数
1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/bash dir="/path/to/directory" count=0 for file in$dir/* do if [ -f $file ] then count=$((count + 1)) fi done echo"The number of files in $dir is: $count"
批量修改文件名
1 2 3 4 5 6 7
#!/bin/bash # 将当前目录下所有的 .txt 文件名中的 "abc" 替换成 "def" for file in *.txt do mv"$file""${file/abc/def}" done
批量复制文件
1 2 3 4 5 6 7
#!/bin/bash # 复制当前目录下所有的 .txt 文件到 /tmp 目录下 for file in *.txt do cp"$file" /tmp/ done
批量压缩文件
1 2 3 4 5 6
#!/bin/bash # 将当前目录下所有的 .txt 文件压缩成 .tar.gz 格式 for file in *.txt do tar czf "${file}.tar.gz""$file" done
批量解压文件
1 2 3 4 5 6
#!/bin/bash # 将当前目录下所有的 .tar.gz 文件解压到 /tmp 目录下 for file in *.tar.gz do tar xzf "$file" -C /tmp/ done
批量部署应用
1 2 3 4 5 6 7 8
#!/bin/bash # 部署多个应用到不同的目录下 apps=(app1 app2 app3 app4 app5) for app in"${apps[@]}" do mkdir"/var/www/${app}" cp -r "/tmp/${app}"/* "/var/www/${app}/" done