실행 중이고 Ubuntu 18.04
실행 bash
중인 명령에 비밀번호를 전달하고 싶지만 sudo
일단 실행되면, 즉 비밀번호가 명령에 파이프되어( python3
명령 실행 app
) 비밀번호를 두 번 묻습니다. :
echo "passphrase" | echo "passphrase" | echo $password | sudo command
하지만 작동하지 않는 것 같습니다.
이 명령의 출력은 다음과 같습니다.
sudo python3 app.py
Enter PEM pass phrase:
* Serving Flask app "app" (lazy loading)
* Environment: production
WARNING: Do not use the development server in a production environment.
Use a production WSGI server instead.
* Debug mode: on
* Running on https://127.0.0.1:443/ (Press CTRL+C to quit)
* Restarting with stat
Enter PEM pass phrase:
* Debugger is active!
* Debugger PIN: 157-564-730
127.0.0.1 - - [30/Jan/2019 18:29:44] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [30/Jan/2019 18:29:45] "GET /static/style.css HTTP/1.1" 200 -
127.0.0.1 - - [30/Jan/2019 18:29:45] "GET /static/vendor/bootstrap/css/bootstrap.css HTTP/1.1" 200 -
127.0.0.1 - - [30/Jan/2019 18:29:45] "GET /static/css/simple-sidebar.css HTTP/1.1" 200 -
127.0.0.1 - - [30/Jan/2019 18:29:45] "GET /static/vendor/jquery/jquery.min.js HTTP/1.1" 200 -
127.0.0.1 - - [30/Jan/2019 18:29:45] "GET /static/vendor/bootstrap/js/bootstrap.bundle.min.js HTTP/1.1" 200 -
127.0.0.1 - - [30/Jan/2019 18:29:45] "GET /favicon.ico HTTP/1.1" 404 -
unix
bash 스크립트의 명령을 통해 이를 수행하는 방법을 아는 사람이 있습니까 ?