“Bash podłoże po charakterze” Kod odpowiedzi

Bash podłoże po charakterze

TEXT="A very long text to read"
echo "${TEXT#*very }" #the string after the substring "very"
#output:
#long text to read

echo "${TEXT% to*}" #the string before the substring " to"
#output:
#A very long text
Beautiful Bear

Bash Uzyskaj wartość po równym znaku

echo "GenFiltEff=7.092200e-01" | cut -d "=" -f2 
Perro Fiel

Uzyskaj ciąg po skrypcie postaci

your_str='GenFiltEff=7.092200e-01'
echo $your_str | cut -d "=" -f2
Old-fashioned Otter

Odpowiedzi podobne do “Bash podłoże po charakterze”

Pytania podobne do “Bash podłoże po charakterze”

Więcej pokrewnych odpowiedzi na “Bash podłoże po charakterze” w Shell/Bash

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

Przeglądaj inne języki kodu