tazbug view tazbug @ rev 122

Tazbug may have a small cmdline tool to retrive info from the online bug tracker
author Christophe Lincoln <pankso@slitaz.org>
date Mon Feb 13 17:45:24 2017 +0100 (2017-02-13)
parents
children 3d8bf273e46e
line source
1 #!/bin/sh
2 #
3 # TazBug Command line tool. Help to search and check bugs from cmdline.
4 #
5 # Copyright (C) 2017 SliTaz GNU/Linux - BSD License
6 #
7 . /lib/libtaz.sh
9 url="http://bugs.slitaz.org/"
11 #
12 # Commands
13 #
15 case "$1" in
16 *)
17 gettext "Usage:"; echo " $(basename $0) [command]" ;;
18 esac
20 exit 0