Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
echo "[Nov 09 10:10:31] DONE[1] := 1 := *generic.sh*5*" | awk -F ":=" '{print $3}' | sed 's/\*//1;s/\*$//'
awk man page said:Unlike sub() and gsub(), the modified string is returned as the result of the function, and the original target string is not changed.
awk -F ":=" '{x=gensub(/*/,"",2,$3);sub(/*$/,"",x);print x}'