bash subtract substring 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 grep -q "$SUB" <<< "$STR"; then
echo "It's there"
fi