bash string substitiution code example
Example 1: bash replace substring
echo [string] | sed "s/[original]/[target]/g"
Example 2: bash substring test
#!/bin/bash
STR='GNU/Linux is an operating system'
SUB='Linux'
if [[ "$STR" =~ .*"$SUB".* ]]; then
echo "It's there."
fi