Understanding `sudo` in Linux
What is sudo?
sudo allows a normal user to execute commands that require root user permissions.
It is commonly used for administrative tasks in Linux systems.
Example:
sudo useradd test
Without sudo,
abhishekchandra.hashnode.dev2 min read