“Substring im Shell -Skript” Code-Antworten

Substring im Shell -Skript

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

So drucken Sie Substring im Bash -Skript

INPUT='someletters_12345_moreleters.ext'
SUBSTRING=$(echo $INPUT| cut -d'_' -f 2)
echo $SUBSTRING
Clean Coyote

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 im Shell -Skript”

Fragen ähnlich wie “Substring im Shell -Skript”

Weitere verwandte Antworten zu “Substring im Shell -Skript” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen