摘要:
Customize Code \e[ Begin color changes \e[0m Exit color-change mode 0;32m Specify the color mode The first number in the color code specifies the type 阅读全文
摘要:
前言 在使用shell打印由两个任意字母组合的字符串时出现了两种情况。:一种情况使用source执行脚本;另一种使用sh执行。 脚本如下 #!/usr/bin/env bash for n in {a..z} do for m in {a..z} do echo "$n$m" done done 脚 阅读全文