本文记下常用的bash shell语法和命令,方便日后参考。
参考文档
Bash Guide for Beginners
http://www.tldp.org/LDP/Bash-Beginners-Guide/html/
注释 Comment
1. bash脚本要以
#!/bin/bash
开头。
2. ‘#’号后面的都是注释,如
# An example for bash comment. echo "hehe" # Print hehe to screen.
feichashao's Blog
本文记下常用的bash shell语法和命令,方便日后参考。
Bash Guide for Beginners
http://www.tldp.org/LDP/Bash-Beginners-Guide/html/
1. bash脚本要以
#!/bin/bash
开头。
2. ‘#’号后面的都是注释,如
# An example for bash comment. echo "hehe" # Print hehe to screen.