modified: README.rst

modified:   kira.sh
This commit is contained in:
russellballestrini 2016-04-16 18:38:08 -04:00
parent b0d97dfa86
commit 28dfe263a9
2 changed files with 3 additions and 3 deletions

View file

@ -15,13 +15,13 @@ Kira expects two arguments, the `process-regex` and the human readable `program-
.. code-block:: bash
./kira.sh <process-regex> <program-name>" >&2
./kira.sh <process-regex> <program-name>
For example:
.. code-block:: bash
./kira.sh /usr/bin/uri2png uri2png"
./kira.sh /usr/bin/uri2png uri2png
cron
====

View file

@ -1,7 +1,7 @@
#!/bin/bash
if [ -z $2 ]; then
echo "Usage: $0 <process-regex> <program-name>" >&2
echo "Usage: $0 <process-regex> <program-name>"
echo "Example: $0 /usr/bin/cutycapt cutycapt"
exit
fi