如何创建一个文本文件来自动运行这些命令:
sudo ap-hotspot start
sudo ap-hotspot configure
sudo ap-hotspot stop
sudo ap-hotspot restart
每个命令一个文件。
我尝试创建一个包含以下内容的文件“.sh”:
#!/bin/bash
ap-hotspot start
还用于:
chown root:root <start-a-p>.sh
chmod 4755 <start-a-p>.sh
授予权限。
但它不起作用。还有其他建议吗?
答案1
尝试在脚本(.sh)中使用以下内容
#!/bin/bash
sudo /bin/bash -c "ap-hotspot start"
通过执行使其成为脚本chmod +x filename.sh
./filename.sh
如果您位于父文件夹或完整路径中,则运行它。