Skip to content

Instantly share code, notes, and snippets.

@thstarshine
Last active June 26, 2019 01:37
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 thstarshine/f4474e31f203d344b22c249529c606ec to your computer and use it in GitHub Desktop.
Save thstarshine/f4474e31f203d344b22c249529c606ec to your computer and use it in GitHub Desktop.
shell script exec string command
#!/bin/bash
# /tmp/cmd = -l
a='$(cat /tmp/cmd)'
echo "ls $a" # => ls $(cat /tmp/cmd)
# alternatives to:
#eval ls $a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment