NUMBER=0
cat /etc/passwd|while read line
do
NUMBER=`expr $NUMBER + 1`
if [ $NUMBER = $1 ]
then
echo $line
exit
fi
done
This even works when there are spaces used in the file.
Gregor.Weertman@mailcity.com
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.