“Grep Substring” Kode Jawaban

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 untuk substring

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

Jawaban yang mirip dengan “Grep Substring”

Pertanyaan yang mirip dengan “Grep Substring”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya