“Grep Substring” Kod odpowiedzi

Grep Substring

# 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 dla podjazdu

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

Odpowiedzi podobne do “Grep Substring”

Pytania podobne do “Grep Substring”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu