How to extract the first character of a string in Linux
To cut the first character of s string in bash, we can use the below command.
echo "string" | cut -c1
For Techs.... Techniques.... Technologies....
To cut the first character of s string in bash, we can use the below command.
echo "string" | cut -c1