Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法用参数调用 linux 命令?例如,当调用“su”请求密码时,我想在终端中粘贴一个字符串,该字符串将调用 su 并在之后填写密码(例如 1234)。
谢谢!
改为使用sudo。
sudo
修改 /etc/sudoers 添加这一行:
$user ALL=(ALL) NOPASSWD: ALL
$user 是您的用户名。比您无需任何密码即可运行 sudo 命令。