Skip to content

Instantly share code, notes, and snippets.

@alexbilbie
Created July 28, 2012 15:34
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 alexbilbie/3193757 to your computer and use it in GitHub Desktop.
Save alexbilbie/3193757 to your computer and use it in GitHub Desktop.
PHP Hubot script
#!/usr/bin/php
<?php
$vars = explode(' ', $argv[1]);
if ($vars[0] === 'hello')
{
echo 'Hello, ' . $vars[1] . '. How are you?' . PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment