Skip to content

Instantly share code, notes, and snippets.

@W4RH4WK
Created April 17, 2020 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save W4RH4WK/88dc725be69ff57ba7bdd107acd11b8a to your computer and use it in GitHub Desktop.
Save W4RH4WK/88dc725be69ff57ba7bdd107acd11b8a to your computer and use it in GitHub Desktop.
Bash inline text payload
#!/bin/bash
readonly payload='\
foo abc xyz
bar def uvw'
while read one two three ; do
echo $one : $two : $three
done <<< $payload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment