LOADING...

加载过慢请开启缓存(浏览器默认开启)

loading

Shell脚本执行需要 root 权限的命令

直接上代码,命令如下:

echo "passwd"|sudo -S command

passwd替换为你的root权限需要的密码,command 替换为需要执行的命令即可。

example:
比如 test.sh 脚本内容如下

#!/bin/bash
echo "123456"|sudo -S cp -rf  hosts.txt /etc/hosts