extract only number from string in bash code example
Example 1: extract numners from string linux
$ NUMBER=$(echo "I am 999 years old." | grep -o -E '[0-9]+')
$ echo $NUMBER
999
Example 2: extract numners from string linux
echo 'Insert completed. 100 rows added ' | awk '{print $(NF-2)}'