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.
我有这段代码作为别名:
alias x='sudo ifconfig en0 ether xx-xx-xxx-xxx-x; ifconfig en0 |grep ether'
它每次都要求我输入密码。如何在这个别名密码中绑定 sudo?
您可以使用该-S选项sudo从标准输入读取密码。
-S
sudo
试试这个:
alias x='sudo -S ifconfig en0 ether xx-xx-xxx-xxx-x <<< mypassword; ifconfig en0 |grep ether'
显然,将您的 sudo 密码存储在别名中并不安全,因此我强烈建议您不要这样做。