Hi,
do you mean this ?
# this is an example from my passwd
# support:x:1301:200

upport-User:/usr2/support:/bin/sh
# guest:x:1303:50:GastUser:/usr/guest:/bin/sh
cat /etc/passwd | awk ' BEGIN { FS=":" }
{
print $3":"$1":"$4 > "file1"
}'
# and this will be the output in file1
# 1301:support:200
# 1303:guest:50