Last active
January 8, 2017 02:04
-
-
Save BenBroide/e152556a22b0d306f1a128377f638454 to your computer and use it in GitHub Desktop.
Hostname cloud9
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
| # Recives hostname : batz-bar-taxi-coupons-4241432 | |
| # returns: batz-bar-taxi-coupons | |
| IFS='-' read -r -a host_name_array <<< "$(hostname)" | |
| unset 'host_name_array[${#host_name_array[@]}-1]' | |
| IFS=$'-'; echo "${host_name_array[*]}" ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment