Skip to content

Instantly share code, notes, and snippets.

@TheFauxFox
Created October 15, 2018 17:44
Show Gist options
  • Save TheFauxFox/346f0f79b39592e2facb0b9490e38b4d to your computer and use it in GitHub Desktop.
Save TheFauxFox/346f0f79b39592e2facb0b9490e38b4d to your computer and use it in GitHub Desktop.
Converts hex to string, delimeter of " "
readarray -t arr <<< $@ #Read all args into readarray
for i in ${arr}; do #Loop over array
echo $i | xxd -r #Convert 0x65 to 'e'
done
echo #Echos newline to stop headaches
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment