“Substring in String Shell” Code-Antworten

Substring im Shell -Skript

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

Substring in 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

Ähnliche Antworten wie “Substring in String Shell”

Fragen ähnlich wie “Substring in String Shell”

Weitere verwandte Antworten zu “Substring in String Shell” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen