version 1.0.0, 2013-10-19 : Initial version
Get 1st system user id available
A perl one-liner to get the first system uid available.This shell command returns the first uid available on the system.
perl -le '$i++ while getpwuid($i); print $i'
This shell command returns the first uid available on the system.
perl -le '$i++ while getpwuid($i); print $i'