“Substring Grep” Respostas de código

Substring Grep

# You can do it in two ways
# 1) Let "grep" read on its standard input

echo "$line" | grep -o select

# 2) tell "grep" here is the string

grep select <<< "$line"
Mckynde

grep para substring

output=$(command)
[[ $output =~ (CpuIowait=[0-9][.][0-9]{2}) ]] && echo "${BASH_REMATCH[1]}"
Hungry Hippopotamus

Respostas semelhantes a “Substring Grep”

Perguntas semelhantes a “Substring Grep”

Procure respostas de código populares por idioma

Procurar outros idiomas de código