Skip to content

Instantly share code, notes, and snippets.

@haeramkeem
Created May 3, 2022 04:26
Show Gist options
  • Save haeramkeem/1297063b8f23ca60aa35e9a2f9bdcb4e to your computer and use it in GitHub Desktop.
Save haeramkeem/1297063b8f23ca60aa35e9a2f9bdcb4e to your computer and use it in GitHub Desktop.
Cut last field
#!/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