在学习 Jenkins 工具时,我尝试在我的私人 Ubunto 机器上执行一个简单的命令,并在主题中收到错误消息。
到目前为止,我的所有尝试都失败了:
sudo -S ps -ef | grep jenkins < password.secret
sudo -S ps -ef | grep jenkins < <my secret admin password>
echo <my secret admin password> | sudo -S ps -ef | grep jenkins
sudo -S <<< <my secret admin password> ps -ef | grep jenkins
我该如何修复它?
谢谢。