Which command is used to translate and/or delete characters from stdin input?

Disable ads (and more) with a premium pass for a one time $4.99 payment

Boost your Linux skills with the CompTIA Linux+ Certification Exam simulator. Engage with multiple choice questions and detailed feedback. Master Linux concepts and prepare for your exam with confidence!

The command used to translate and/or delete characters from standard input (stdin) is indeed 'tr'. This utility is particularly powerful in processing text streams. The 'tr' command allows users to specify sets of characters to be replaced or deleted in the input data. For instance, if you want to change all lowercase letters to uppercase or delete specific characters from a stream, 'tr' can achieve that efficiently.

When you pipe data into the 'tr' command, it reads the stdin input and performs the specified transformations based on the options provided. For example:

  • To translate characters: echo "hello world" | tr 'a-z' 'A-Z' will output "HELLO WORLD".
  • To delete characters: echo "hello world" | tr -d 'aeiou' will output "hll wrld", effectively removing the vowels.

This makes 'tr' a versatile tool in scripting and command-line text manipulation, reflecting its importance in Unix/Linux environments.

Other commands mentioned do not serve this purpose. For example, '/dev/null' is a special file that discards all data written to it, 'rmdir' is used for removing directories, and 'paste' combines lines from files, but does not modify individual

Subscribe

Get the latest from Examzify

You can unsubscribe at any time. Read our privacy policy