摘要:
1.Cat命令 这么多命令,常用的 Cat –n file 显示文件以及行数 Cat - echo 'Text through stdin' | cat - file.txt Text through stdin this is file and test #这个是file.txt的内容,而 –就是 阅读全文
摘要:
1.#!/bin/bash shebang 可以自定义 比如 #!/bin/bash +x 就会打印出执行日志 2.命令序列界定 在Bash中,每个命令或是命令序列是通过使用分号或换行符来分隔的。 要么换行要么加分号;比如: $ cmd1 ; cmd2 它等同于: $ cmd1 $ cmd2 3.p 阅读全文