String Operations In Shell Scripting
Operations On String In Shell Script
-> On the string we can perform multiple operations which we are going to see -
-> Suppose we want to find the Length of the String then -
#!/bin/bash
myVar="String Operations"
stringLength=${#myVar} # It will fi...