aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2020-02-15 20:58:21 +0200
committerSergey Poznyakoff <gray@gnu.org>2020-02-15 20:58:43 +0200
commit95f861f2af6858412445371c621ebd1a00e16f81 (patch)
tree59978df025ad96986781863e94e600e280a9f0a7
parent19de5926253c0b5a060997dbc0f33711336adfeb (diff)
downloadslackupgrade-95f861f2af6858412445371c621ebd1a00e16f81.tar.gz
slackupgrade-95f861f2af6858412445371c621ebd1a00e16f81.tar.bz2
Use tput or stty to get the terminal size
-rw-r--r--slackupgrade5
1 files changed, 3 insertions, 2 deletions
diff --git a/slackupgrade b/slackupgrade
index e4335a0..9be3e98 100644
--- a/slackupgrade
+++ b/slackupgrade
@@ -385,3 +385,4 @@ function download_all() {
385 info "downloading packages" 385 info "downloading packages"
386 if [ ${COLUMNS:-0} -lt 10 ]; then 386 cols=$(tput cols 2>/dev/null || stty size 2>/dev/null | cut -d' ' -f2)
387 if [ ${cols:-0} -lt 10 ]; then
387 progressbar=0 388 progressbar=0
@@ -390,3 +391,3 @@ function download_all() {
390 total=$(wc -l candidates | cut -d ' ' -f 1) 391 total=$(wc -l candidates | cut -d ' ' -f 1)
391 width=$(( $COLUMNS - 7 )) 392 width=$(( $cols - 7 ))
392 fi 393 fi

Return to:

Send suggestions and report system problems to the System administrator.