2

How do I pass the $line to the cut command properly in this loop?

while read line
do
    login= $(cut -d : -f 1)

done < /etc/passwd

I can't do $(cut -d : -f 1 $line) so what is the correct way?

Oliver Salzburg
  • 89,072
  • 65
  • 269
  • 311
Mike
  • 1,547

3 Answers3

3

Let the read command together with the shell IFS variable parse the line for you:

while IFS=: read -r login restOfLine; do
    doSomethingWith $login
done < /etc/passwd

To answer your question, the bash here-string would be useful:

login=$(cut -d: -f1 <<< "$line")
glenn jackman
  • 27,524
2

Use echo:

login=$(echo "$line" | cut -d : -f 1)
Dennis
  • 50,701
1

You don't actually need the while loop if your intention is only to list the names. Also there is a syntax error after login=, there should be no space.

cut -d: -f1 /etc/passwd | \
while read login; 
do 
    echo username: $login;
done

or as you tried:

while read line; do
   login=$(echo $line | cut -d : -f 1)
   echo $login
done < /etc/passwd

even better:

db-getent passwd |cut -d: -f1 | xargs -L1 echo name: