Linux sed, cat, cut examples

cut -d “:” -f 1,3 /etc/passwd

echo $aLine | cut -d “:” -f 1,3

cat /etc/passwd | cut -d “:” -f1,3