Tag: shell script

  • Shell Script 写作方法与 Linux 命令备忘录

    这是一个个人笔记的收录处,乐观地看,我会不断更新它来收录新内容。 Shell Script 中的控制语法 命令替换 Command Substitution 命令替换的方法为反引号 `command` 或者$(command),将 command 的执行结果(输出)放在原处。例如: get_username() { echo “john”…