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 | b61fb16aee90 |
children | 039c90c60494 |
files | tazbug |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/tazbug Mon Feb 13 17:45:24 2017 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +#!/bin/sh 1.5 +# 1.6 +# TazBug Command line tool. Help to search and check bugs from cmdline. 1.7 +# 1.8 +# Copyright (C) 2017 SliTaz GNU/Linux - BSD License 1.9 +# 1.10 +. /lib/libtaz.sh 1.11 + 1.12 +url="http://bugs.slitaz.org/" 1.13 + 1.14 +# 1.15 +# Commands 1.16 +# 1.17 + 1.18 +case "$1" in 1.19 + *) 1.20 + gettext "Usage:"; echo " $(basename $0) [command]" ;; 1.21 +esac 1.22 + 1.23 +exit 0