loop in bash

For loop in bash shell.

p6.sh #!/bin/bash i=0 for users in `cat /etc/passwd | awk -F: '{print $1}'` do    echo "$((i++)): $user…

Read more
Load More
That is All