From: EinvalSledge@gmail.com Date: Thu, 19 Apr 2012 21:00:27 +0000 (+0000) Subject: * With EXTRAVERBOSE==2 or more, make run_command() print out each X-Git-Url: https://git.hcoop.net/clinton/abcde.git/commitdiff_plain/98bea0a0f2d7e9d9c24037ed9998920b12711bee?hp=7172fbaf157358a6a5788460a2fdbd0bf454bae3 * With EXTRAVERBOSE==2 or more, make run_command() print out each command as it's run. (Closes issue 39). git-svn-id: http://abcde.googlecode.com/svn/trunk@320 a0fa61bc-5347-0410-a1a9-7f54aa4e1825 --- diff --git a/abcde b/abcde index 3d69a30..34e0546 100755 --- a/abcde +++ b/abcde @@ -246,6 +246,7 @@ page () # Runs a command, silently if necessary, and updates the status file run_command () { + vvecho "$@" BLURB="$1" shift # See if this is supposed to be silent diff --git a/changelog b/changelog index 69a06b4..db13477 100644 --- a/changelog +++ b/changelog @@ -23,6 +23,8 @@ abcde 2.5.1 UNRELEASED * Change the meaning of EXTRAVERBOSE; previously, it was a y/n option to make things more verbose. Add extra levels of verbosity (0, 1, 2 so far) and a new vvecho() function for callers to use. + * With EXTRAVERBOSE==2 or more, make run_command() print out each + command as it's run. (Closes issue 39). [ Colin Tuckley ] * replace deprecated egrep with grep -E (Closes issue 24).