合集-Linux Shell
摘要:Linux shell command screen All In One
usbserial
USB
usbmodem
阅读全文
摘要:Linux shell #! interpreter All In One
指定脚本解释器的路径
#!/usr/bin/env python3
# ✅ 推荐写法, 动态读取 env 配置的解释器路径,切换系统环境不会报错,可移植性高 🚀
#!/usr/bin/python3
# 👎 不推荐写法,写死了解释器路径,切换系统环境有可能会报错,可移植性低
阅读全文
摘要:Linux shell set command All In One
set -u
set +u
阅读全文
摘要:Linux shell script auto generate batch files All In One
Linux shell script 自动批量生成文件
EOF
阅读全文
摘要:Linux bash script HereDoc All In One
Linux shell script multi-lines comments / Linux shell script block comments
Linux shell 脚本多行注释/Linux shell 脚本块注释
EOF
阅读全文
摘要:Linux shell system environment All In One
vscode terminal
自定义环境变量
阅读全文
摘要:Linux shell command curl All In One
阅读全文
摘要:Linux shell command chroot All In One
阅读全文
摘要:Linux shell command chmod All In One
阅读全文
摘要:Linux shell number variables add All In One
阅读全文
摘要:Linux bash shell "${1}" All In One
echo
阅读全文
摘要:Linux xattr shell command All In One
阅读全文
摘要:Multiple Ways to Change Terminal Shell in Linux All In One
在 Linux 中更改终端 Shell 的多种方法汇总
阅读全文
摘要:Linux shell stdin & stdout & stderr All In One
2>&1 二合一,输出错误 信息
阅读全文
摘要:Linux shell man command All In One
阅读全文
摘要:Linux shell command line editor All In One
sed / gawk / vim / vi / nano / emacs / vscode
阅读全文
摘要:Linux shell command uname All In One
阅读全文
摘要:Linux bash shell script block comment All In One
Linux bash shell 脚本 多行注释 / 块级注释
阅读全文
摘要:Linux bash shell script batch download files All In One
Linux bash shell script 批量下载文件 All In One
pdf crawler / pdf 爬虫
阅读全文
摘要:Linux shell script bug and error All In One
未找到命令 ❌
shell 变量赋值=等号两边不能有空格
参数太多 ❌
在 if 条件判断语句中, 使用双引号包裹变量
阅读全文