Repository Details
Shared by
HelloGitHub Rating
0 ratings
Free•MIT
Claim
Discuss
Collect
Share
41.4k
Stars
No
Chinese
Shell
Language
No
Active
1
Contributors
62
Issues
No
Organization
None
Latest
4k
Forks
MIT
License
More

该书有好多复制就能用的 bash 函数,我愿称其为 bash 的“奇技淫巧”。比如把字母转为大写的函数:
```
upper() {
# Usage: upper "string"
printf '%s\n' "${1^^}"
}
$ upper "hello"
HELLO
```
Included in:
Vol.57
Comments
Rating:
No comments yet