리눅스 bash 쉘 기능 용어
Bash 쉘 용어
쉘 쓸 때 무슨 기능이 있는건 알지만 확실하게 기억이 안나서 검색하고 싶은데 기능의 이름이 기억안났을 때를 대비해서 기능을 정리
- Here-Document (Here-String)
- I/O Redirection (Pipeline)
- stdin, stderr, stdout
- Filename Expansion (Globbing)
- Regular Expression
- Aliases
- Arguments
- $# : Number of args
- Process Substitution (Sub shell)
- non-zero exit status ( $? )
- process spawn
- declare
- Code Block
- Operator
- File Test Operator
- Condition (if~then)
- Evaluation
- Character Escape
- Quoting ( ” , ‘ )
- Sha-Bang, Shebang ( #! )