Created
October 29, 2022 18:28
-
-
Save dginhoux/56f6a85db748895a4766006e217700a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### bash split | |
${var#*SubStr} # will drop begin of string up to first occur of `SubStr` | |
${var##*SubStr} # will drop begin of string up to last occur of `SubStr` | |
${var%SubStr*} # will drop part of string from last occur of `SubStr` to the end | |
${var%%SubStr*} # will drop part of string from first occur of `SubStr` to the end | |
string="} | |
echo $string | cut -d';' -f1 # output is 1 | |
echo $string | cut -d';' -f2 # output is 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment