What can i do to capitalize all characters in the output of the ifconfig command in Bash?
So what is returned, is all in uppercase letters
What can i do to capitalize all characters in the output of the ifconfig command in Bash?
So what is returned, is all in uppercase letters
You could use tr
with character classes:
ifconfig | tr '[:lower:]' '[:upper:]'