# HG changeset patch # User Christophe Lincoln # Date 1487004324 -3600 # Node ID 3698cf81f88409882aced6eb2778df8d781282fa # Parent b61fb16aee90173a837c9614dcc77bad324c478f Tazbug may have a small cmdline tool to retrive info from the online bug tracker diff -r b61fb16aee90 -r 3698cf81f884 tazbug --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tazbug Mon Feb 13 17:45:24 2017 +0100 @@ -0,0 +1,20 @@ +#!/bin/sh +# +# TazBug Command line tool. Help to search and check bugs from cmdline. +# +# Copyright (C) 2017 SliTaz GNU/Linux - BSD License +# +. /lib/libtaz.sh + +url="http://bugs.slitaz.org/" + +# +# Commands +# + +case "$1" in + *) + gettext "Usage:"; echo " $(basename $0) [command]" ;; +esac + +exit 0