shell 特殊变量记忆 Posted on 2019-07-10 | Edited on 2019-07-16 | In linux | Comments: 一直头疼 shell 脚本的特殊变量记忆,总是背了又忘,忘了又背。太多的东西实在记不住 $*, $?, $!,不如就背两个,$# 和 $@。 $# 是传给脚本的参数个数 $@ 是传给脚本的所有参数的列表 $0 是脚本本身的名字 $1 是传递给该 shell 脚本的第一个参数 $2 是传递给该 shell 脚本的第二个参数 Related Posts GitHub 下载指定文件夹 How to delete default bookmark of nautilus in ubuntu ? Linux 查看端口占用 awk 入门 cmake