Bash Scripting - Text Processing in Scripts
Which of the following commands correctly uses a here string to count the number of words in "hello world"?
<<<, so wc -w <<< "hello world" is correct.<< is a here document, < is input redirection from file, and > is output redirection.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions