summaryrefslogtreecommitdiff
path: root/shhelp.sh
blob: 27d1b8f8b39c9b6c7501c07da2ee19319bf5b571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash -ex

case "$1" in
	"help") echo "help <TOPIC> : Prints help about TOPIC."
	;;
	"trains") echo "trains [STATION] : Prints the next trains that will stop at Courbevoie's station."
	echo "    When provided, only results that concerns STATION are advertised."
	;;
	*) echo "The following commands are available : help trains"
	;;
esac

exit 0