If you want to run a sudo
command without being prompted to input the password you can do the following command.
echo password | sudo -S rm -rf /opt/jetty/
In the command above we are trying to remove the /opt/jetty
directory using the rm -rf
command. The -S
(stdin) option allow the sudo
command to read password from a standard input instead of a terminal device.
If you want to store the password in a file you can use the cat
command instead of echo
like the following example.
cat password.txt | sudo -S rm -rf /opt/jetty/
Latest posts by Wayan (see all)
- How do I split large excel file into multiple smaller files? - April 15, 2023
- How do I get the number of processors available to the JVM? - March 29, 2023
- How do I show Spring transaction in log / console? - March 29, 2023