X-Git-Url: https://iankelling.org/git/?p=log-quiet;a=blobdiff_plain;f=logq;h=b253bef510416c8f9a256b2d2599d090ae81b27c;hp=ac49a8fa9fa933e8a7e62d19f375552e1d65109c;hb=457661424027a87b9ea600cfeb218574e95470d4;hpb=634a9faf0514608dc9559800292025a573fbe780 diff --git a/logq b/logq index ac49a8f..b253bef 100755 --- a/logq +++ b/logq @@ -1,10 +1,27 @@ #!/bin/bash +# Copyright (C) 2014-2016 Ian Kelling + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This file is exactly the same as logq-function except the last line +# to make it into a script. logq () { local help="Usage: logq [-h|--help] COMMAND [ARG...] -Log Quietly. Run COMMAND with ARGs, log to temp file. Output return code, -command, and log path. Tail log if there is a failure. -Follows output format of logsave." +Log to temp file, output tail of log in case of error. + +Run COMMAND with ARGs. Output return code, command, and log path. Tail +log if there is a failure. Follows output format of logsave." if [[ $1 == --help || $1 == -h ]]; then echo "$help"