1、if ;then xxx;fi
if ;then elif xx;then xx;else xx;fi
test condition
-eq ge gt le lt ne
str1 = str2
-z
-n 长度非0
-d -e -f -r -s 非空 -w -x -o -G file1 -nt file2 -ot
[]&&[]
[]||[]
case # 1 $@
read -t 5 -p "please input your name in 5 seconds" yourname
隐藏输入 read -s -p "Enter your password:" password
从文件中读取
cat file1| while read line
do
echo $line
done
STDIN STDOUT STDERR
2>file1 1>file2
&>file1
列出进程的文件描述符: lsof -a -p 1 -d 0,1,2
-p 指定PID -d 指定文件描述符
/dev/null
创建临时文件:mktemp testing.XXXXXX
mktemp -t testing.XXXXXX
mktemp -d testing.XXXXXX
date|tee file
date|tee -a file
捕获ctrl+c信号:trap "hehehe" SIGINT
image.png
捕获EXIT信号
image.png
nohup bash a.sh &
&& pid
nice -n 10 调整优先级
image.png
at -f a.sh now
at atrm atq
at now + 1 hour
date
ctrl+D
网友评论