Created
May 3, 2022 04:26
-
-
Save haeramkeem/1297063b8f23ca60aa35e9a2f9bdcb4e to your computer and use it in GitHub Desktop.
Cut last field
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
#!/bin/bash | |
# To get 'com' from 'maps.google.com' -> parse string to get last field using delimiter | |
# Ref: https://stackoverflow.com/a/48032204 | |
echo 'maps.google.com' | awk -F. '{print $NF}' | |
# or | |
awk -F. '{print $NF}' <<< 'maps.google.com' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment