Shell script #
Review
- 2019/12/25
- 2020/04/16
- 2024/06/20
脚本头部规范 #
#!/bin/bash
set -euo pipefail
trap "echo 'error: Script failed: see failed command above'" ERR
添加颜色输出 #
echo -e "\e[COLORmSample Text\e[0m"
Option | Description |
---|---|
-e | Enable interpretation of backslash escapes |
\e[ | Begin the color modifications |
COLORm | Color Code + ‘m’ at the end |
\e[0m | End the color modifications |
$ echo -e "\e[31mRed Text\e[0m"
# info=\e[0;36m
# warning=\e[;33m
# success=\e[0;32m
# error=\e[0;31m
# nc=\e[0m
- https://stackoverflow.com/questions/5947742/how-to-change-the-output-color-of-echo-in-linux
- https://www.shellhacks.com/bash-colors/
查找双字节文字 #
perl -ane '{ if(m/[[:^ascii:]]/) { print } }
Reference #
- https://github.com/wangdoc/bash-tutorial
- https://github.com/jlevy/the-art-of-command-line/blob/master/README-zh.md
- https://devhints.io/bash
- Shellcheck https://github.com/koalaman/shellcheck
- awesome shell https://github.com/alebcay/awesome-shell
- Filenames and Pathnames in Shell: How to do it Correctly https://dwheeler.com/essays/filenames-in-shell.html