X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Frev_control%2Fversion_control.sh;h=7656dc1003c453617fae7b9f3ae0b326da8d9e1a;hb=5afd78d9aa103f34e3ad40d00935999b59b5f3a1;hp=8c7e996162769570b7c3b7644ae15063dd84ee70;hpb=717d18a858cb01b944ae470a6af31a86b038b5a5;p=feisty_meow.git diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index 8c7e9961..7656dc10 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -17,6 +17,11 @@ export MAX_DEPTH=5 # use our splitter tool for lengthy output if it's available. if [ ! -z "$(which splitter)" ]; then TO_SPLITTER="$(which splitter)" + +#hmmm: another reusable chunk here, getting terminal size. + # calculate the number of columsn in the terminal. + cols=$(stty size | awk '{print $2}') + TO_SPLITTER+=" --maxcol $(($cols - 1))" else TO_SPLITTER=cat fi