Enable the commands to be wrapped in an other command.
As an example, wrapping the commands in sudo, enabling running all comands as sudo without
needing to show it the documentation:
sudo bash -c 'echo "192.0.0.1 example.org" >> /etc/hosts'
making it:
echo "192.0.0.1 example.org" >> /etc/hosts
Enable the commands to be wrapped in an other command.
As an example, wrapping the commands in
sudo, enabling running all comands as sudo withoutneeding to show it the documentation:
sudo bash -c 'echo "192.0.0.1 example.org" >> /etc/hosts'making it: