Commit 2a273f4d by irul

Menambahkan warning jika tidak dijalankan sebagai root user.

1 parent abb76c50
#!/bin/bash
# irul@20200907
if [[ `id -u` -ne 0 ]] ; then printf "\nPlease run as root.\n\n" ; exit 1 ; fi
clear
# https://www.2daygeek.com/bash-shell-script-view-linux-system-information/
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!