Convert to upper or lower case in shell

convert string to upper or lower case in shell script

convert string to upper case
echo aBcD | tr '[:lower:]' '[:upper:]'

convert string to lower case
echo aBcD | tr '[:upper:]' '[:lower:]'

Configuring Static Routes with ip commands

As a system administrator, you can configure static routes using the ip route command. ...

Mais vistos