A Pipe allows you to?
…send the same input to multiple commands.
…type multiple commands at one prompt.
…send the output of one command to another.
…send the output of a command to a file.
…send the output of one command to another.
sort < list.file
cat list.file»_space; sort
echo list.file > sort
cat list.file | sort
sort < list.file
cat list.file | sort
True
False
True
grep \start file.txt
grep $start file.txt
grep *start file.txt
grep ^start file.txt
grep ^start file.txt
grep $test* file.txt
grep *test file.txt
grep &test file.txt
grep ^test file.txt
grep ^test file.txt
egrep ‘start|end’ file.txt
egrep (start|end) file.txt
egrep start end file.txt
egrep start&end file.txt
egrep ‘start|end’ file.txt
-D
-f
=
-d
-d
-w
True
False
True
True
False
True