About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
nick34992
2/19/2017 - 4:28 PM
share
Share
add_circle_outline
Save
Bash: UID, if, -ne, then
Bash: UID, if, -ne, then
if_ne.sh
content_copy
file_download
#!/bin/bash if [ $UID -ne 0 ]; then echo "not UID 0" else echo "UID 0" fi
clear