How to backup Files and Directories Date-wise using bash script automatically Ibrar Ansari July 16, 2017 Add Comment Backup Files and Directories in Linux Using bash script This is for only System Administrator. One of the simplest ways to backup a...
How to add user in linux using bash script Ibrar Ansari July 15, 2017 Add Comment How to add user in linux using bash script #!/bin/bash if [ $(id -u) -eq 0 ]; then read -p "Enter username : " u...