Shell Script

Shell script #

Review

  1. 2019/12/25
  2. 2020/04/16
  3. 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"
OptionDescription
-eEnable interpretation of backslash escapes
\e[Begin the color modifications
COLORmColor Code + ‘m’ at the end
\e[0mEnd 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

查找双字节文字 #

perl -ane '{ if(m/[[:^ascii:]]/) { print  } }

Reference #

  1. https://github.com/wangdoc/bash-tutorial
  2. https://github.com/jlevy/the-art-of-command-line/blob/master/README-zh.md 
  3. https://devhints.io/bash 
  4. Shellcheck https://github.com/koalaman/shellcheck 
  5. awesome shell https://github.com/alebcay/awesome-shell 
  6. Filenames and Pathnames in Shell: How to do it Correctly https://dwheeler.com/essays/filenames-in-shell.html