Skip to content

Instantly share code, notes, and snippets.

@coderofsalvation
Last active January 2, 2016 17:39
Show Gist options
  • Select an option

  • Save coderofsalvation/8338581 to your computer and use it in GitHub Desktop.

Select an option

Save coderofsalvation/8338581 to your computer and use it in GitHub Desktop.
expands string with spaces to command with arguments (and runs it)
# expands string with spaces to command with arguments (and runs it)
# @param string command
# usage: stringtocmd "ls -la /tmp"
function runascommand(){
${1}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment