Script Execution Guide
A concise guide to running your shell script
1. Save the Code
Save the provided script to a file named overfetch.sh using your preferred text editor.
nano overfetch.sh
# Paste code, then Ctrl+X, Y, Enter to save.
2. Grant Executable Permissions
Grant executable permissions to the script in your terminal:
chmod +x overfetch.sh
3. Execute the Script
Execute the script from your terminal:
./overfetch.sh
If the script is not in your current directory, provide its full path. The script will display detailed system information upon execution.
Certain commands in the script may require root privileges. If output shows "N/A" for specific sections, try executing with sudo:
sudo ./overfetch.sh
Exercise caution with sudo; ensure script integrity before running with elevated privileges.