$ hostname cpsrhc1.cps.udayton.edu $ wc test me ^D 2 2 8 $ echo $? 0 $ wc -c -l test me ^D 2 8 $ echo $? 0 $ wc test me too ^D 4 3 13 $ echo $? 0 $ wc hello world ^D 2 2 12 $ echo $? 0 $ wc -l hello world ^D2 $ wc < /etc/profile 54 146 937 $ echo $? 0 $ wc -l < /etc/profile 54 $ echo $? 0 $ wc -w < /etc/profile 146 $ echo $? 0 $ wc -c < /etc/profile 937 $ echo $? 0 $ wc -cl < /etc/profile 54 937 $ echo $? 0 $ wc -lc < /etc/profile 54 937 $ echo $? 0 $ wc -cw < /etc/profile 146 937 $ echo $? 0 $ wc -wc < /etc/profile 146 937 $ echo $? 0 $ wc -lw < /etc/profile 54 146 $ echo $? 0 $ wc -wl < /etc/profile 54 146 $ echo $? 0 $ wc -wlc < /etc/profile 54 146 937 $ echo $? 0 $ wc -wcl < /etc/profile 54 146 937 $ echo $? 0 $ wc -lwc < /etc/profile 54 146 937 $ echo $? 0 $ wc -lcw < /etc/profile 54 146 937 $ echo $? 0 $ wc -clw < /etc/profile 54 146 937 $ echo $? 0 $ wc -cwl < /etc/profile 54 146 937 $ echo $? 0 $ wc -w -l -c < /etc/profile 54 146 937 $ echo $? 0 $ wc -w -c -l < /etc/profile 54 146 937 $ echo $? 0 $ wc -l -w -c < /etc/profile 54 146 937 $ echo $? 0 $ wc -l -c -w < /etc/profile 54 146 937 $ echo $? 0 $ wc -c -l -w < /etc/profile 54 146 937 $ echo $? 0 $ wc -c -w -l < /etc/profile 54 146 937 $ echo $? 0 $ wc -c -wl < /etc/profile 54 146 937 $ echo $? 0 $ wc -c -lw < /etc/profile 54 146 937 $ echo $? 0 $ wc -w -cl < /etc/profile 54 146 937 $ echo $? 0 $ wc -w -lc < /etc/profile 54 146 937 $ echo $? 0 $ wc -l -wc < /etc/profile 54 146 937 $ echo $? 0 $ wc -l -cw < /etc/profile 54 146 937 $ echo $? 0 $ wc -cw -l < /etc/profile 54 146 937 $ echo $? 0 $ wc -wc -l < /etc/profile 54 146 937 $ echo $? 0 $ wc -lc -w < /etc/profile 54 146 937 $ echo $? 0 $ wc -cl -w < /etc/profile 54 146 937 $ echo $? 0 $ wc -lw -c