bash-guide icon indicating copy to clipboard operation
bash-guide copied to clipboard

bash 基本用法指南

Results 1 bash-guide issues
Sort by recently updated
recently updated
newest added

1. `2.4. Functions` 中有一段英文原文,应当删除,保留下面的中文翻译。 2. 删除 for 的错误语法。 如 bash [文档](https://www.gnu.org/software/bash/manual/html_node/Looping-Constructs.html)所写 for 语句只有两种写法 ```bash for name [ [in [words …] ] ; ] do commands; done ``` 和 ```bash for...