diff --git a/_posts/03-05-01-Command-Line-Interface.md b/_posts/03-05-01-Command-Line-Interface.md index f03345d..a9c7de5 100644 --- a/_posts/03-05-01-Command-Line-Interface.md +++ b/_posts/03-05-01-Command-Line-Interface.md @@ -27,7 +27,7 @@ Let's write a simple "Hello, $name" CLI program. To try it out, create a file na {% highlight php %} .\n"; exit(1); } $name = $argv[1]; @@ -45,7 +45,7 @@ To run our script, above, from the command line: {% highlight console %} > php hello.php -Usage: php hello.php [name] +Usage: php hello.php > php hello.php world Hello, world {% endhighlight %}