“substring em string shell” Respostas de código

substring no script de shell

STR="birthday-091216-pics"
SUBSTR=$(echo $STR | cut -d'-' -f 2)
echo $SUBSTR
Unsightly Unicorn

substring em string shell

# 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

Respostas semelhantes a “substring em string shell”

Perguntas semelhantes a “substring em string shell”

Mais respostas relacionadas para “substring em string shell” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código