Bash shell script to swap the given numbers and strings
kw.sh
Output
kodingwindow@kw:~$ bash kw.sh ——————————————————————————————————————————— Script to swap the given numbers and strings ——————————————————————————————————————————— a=Hi There! b=How are you today? —————————————————————— After swapping... —————————————————————— a=How are you today? b=Hi There! ——————————————————————————————————————————— kodingwindow@kw:~$
What Next?
Bash shell script to check the equality of a given numbers and strings
Bash shell script to convert Decimal to Hexadecimal and Octal
Bash shell script to convert all lowercase letters in a file to uppercase letters
Advertisement