日期: 2025年10月6日

1 篇文章

Shell笔记
shell shell笔记 新建一个文件 vi hello.sh 文件内容 #!/bin/bash echo "hello shell" date whoami 执行 chmod a+x hello.sh给文件添加执行权限 ./hello.sh shell脚本示例 #!/bin/bash echo "请输入您的姓名:&…