Useful shell script snippets

some useful shell script commands

  • show and sort the disk usage

    du -sh * | sort -rn
  • Create an user with www-data as group

    useradd -mg www-data $USER
  • Add user to sudo

    usermod -aG sudo $USER

Leave a Reply

Your email address will not be published.