1
0
mirror of https://github.com/jlevy/the-art-of-command-line.git synced 2025-01-06 03:04:00 +02:00

add an awesome tool

This commit is contained in:
KIDJourney 2015-12-03 22:24:09 +08:00
parent fc683bdf64
commit 820ff70db8
2 changed files with 2 additions and 0 deletions

View File

@ -504,6 +504,7 @@ mkdir empty && rsync -r --delete empty/ some-dir && rmdir some-dir
- [Strict mode](http://redsymbol.net/articles/unofficial-bash-strict-mode/):为了编写更好的脚本文件。
- [shellcheck](https://github.com/koalaman/shellcheck):一个静态 shell 脚本分析工具,本质上是 bash/sh/zsh 的 lint。
- [Filenames and Pathnames in Shell](http://www.dwheeler.com/essays/filenames-in-shell.html):有关如何在 shell 脚本里正确处理文件名的细枝末节。
- [explainshell](http://explainshell.com/about) : 一个非常棒的命令解释工具。
## 免责声明

View File

@ -513,6 +513,7 @@ These are items relevant *only* on MacOS.
- [Strict mode](http://redsymbol.net/articles/unofficial-bash-strict-mode/) for writing better shell scripts.
- [shellcheck](https://github.com/koalaman/shellcheck): A shell script static analysis tool. Essentially, lint for bash/sh/zsh.
- [Filenames and Pathnames in Shell](http://www.dwheeler.com/essays/filenames-in-shell.html): The sadly complex minutiae on how to handle filenames correctly in shell scripts.
- [explainshell](http://explainshell.com/about) : An awesome tool to explain shell command and command arguments.
## Disclaimer