1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-22 07:48:50 -05:00

pacdiff: add --nocolor option for the terminally challenged.

Allow colors to be disabled for use on broken/serial terminals.

Signed-off-by: Jonathan Frazier <eyeswide@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Jonathan Frazier 2013-07-15 13:02:33 -04:00 committed by Allan McRae
parent 05e954d2cd
commit b1b9ca01f0

View File

@ -29,8 +29,6 @@ declare -a oldsaves
m4_include(../scripts/library/output_format.sh)
m4_include(../scripts/library/term_colors.sh)
usage() {
cat <<EOF
$myname is a simple pacnew/pacorig/pacsave updater.
@ -39,6 +37,7 @@ Usage: $myname [-l]
Options:
-l/--locate scan using locate (default: find)
--nocolor remove colors from output
Enviroment Variables:
DIFFPROG override the merge program: (default: vimdiff)
@ -68,6 +67,8 @@ while [[ -n "$1" ]]; do
case "$1" in
-l|--locate)
locate=1;;
--nocolor)
USE_COLOR='n' ;;
-V|--version)
version; exit 0;;
-h|--help)
@ -78,6 +79,8 @@ while [[ -n "$1" ]]; do
shift
done
m4_include(../scripts/library/term_colors.sh)
# see http://mywiki.wooledge.org/BashFAQ/020
while IFS= read -u 3 -r -d '' pacfile; do
file="${pacfile%.pac*}"