The page will keep records of Linux commands which i think is helpful.
grep “example” -i -n /etc/libuser.confcat /etc/libuser.conf | grep “example” -i -n the command will find “example” in “/etc/libuser.conf” file and print it with line number
grep “imp” /etc/*.conf –colorgrep -i -r –include “*.bash” “domain” ./ –colorfind /etc -type f -maxdepth 1 -iname “*.conf” the command will find *.conf files without child directory in “/etc” directory
find /etc -type f -iname “*.conf” -exec grep “example” {} +
the command will find all “example” in all “*.conf” file in “/etc” directory and print the line
crontab -eto edit crontab tasks.
above commands will finish add shaoxp as admin user.