Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When scripting in bash or any other shell in *NIX, while running a command that will take more than a few seconds, a progress bar is needed.

For example, copying a big file, opening a big tar file.

What ways do you recommend to add progress bars to shell scripts?

share|improve this question

16 Answers

up vote 88 down vote accepted

You can implement this by overwriting a line. Use \r to go back to the beginning of the line without writing \n to the terminal.

Write \n when you're done to advance the line.

Use echo -ne to (1) not print \n and (2) to recognize escape sequences like \r.

Here's a demo:

echo -ne '#####                     (33%)\r'
sleep 1
echo -ne '#############             (66%)\r'
sleep 1
echo -ne '#######################   (100%)\r'
echo -ne '\n'
share|improve this answer
7  
I've allways wanted to know this. That's an epiphany for me!!!! Thanks! – Hugo Oct 27 '08 at 17:22
1  
According to the echo man page (at least on MacOS X) sh/bash use their own built-in echo command that doesn't accept "-n" ... so in order to accomplish the same thing you need to put \r\c at the end of the string, instead of just \r – Justin Jenkins Apr 2 '12 at 1:17
1  
I think you mean the Mac version doesn't take -e? You are right that -e seems to be a GNU extension. – Mitch Haile Apr 3 '12 at 18:17
4  
The portable way to output this is to use printf instead of echo. – Jens May 30 '12 at 10:52
So \r it is. I have to try with MacOS as well – Viet Nov 15 '12 at 1:03

Some posts have showed how to display the command's progress. In order to calculate it, you'll need to see how much you've progressed. On BSD systems some commands, like dd(1), accept a SIGINFO signal, and will report their progress. On Linux systems some commands will respond similarly to SIGUSR1. If this facility is available, you can pipe your input through dd to monitor the number of bytes processed.

Alternatively, you can use lsof to obtain the offset of the file's read pointer, and thereby calculate the progress. A command like the following could do the trick.

lsof -o0 -o -p $PID |
awk '
            BEGIN { CONVFMT = "%.2f" }
            $4 ~ /^[0-9]+r$/ && $7 ~ /^0t/ {
                    offset = substr($7, 3)
                    fname = $9
                    "stat -f %z '\''" fname "'\''" | getline
                    len = $0
                    print fname, offset / len * 100 "%"
            }
    '

I've posted Linux and FreeBSD shell scripts on my blog.

share|improve this answer

you can use this project: http://www.theiling.de/projects/bar.html

looks like this: progress bar

share|improve this answer
1  
Looks cool! Thanks for sharing – Viet Nov 15 '12 at 1:02

A simpler method that works on my system using the pipeview ( pv ) utility.

srcdir=$1
outfile=$2


tar -Ocf - $srcdir | pv -i 1 -w 50 -berps `du -bs $srcdir | awk '{print $1}'` | 7za a -si $outfile
share|improve this answer

I found this bash script which wraps around cp & tar commands to provide a progress bar: http://www.theiling.de/projects/bar.html

share|improve this answer

GNU tar has a useful option which gives a functionality of a simple progress bar.

(...) Another available checkpoint action is ‘dot’ (or ‘.’). It instructs tar to print a single dot on the standard listing stream, e.g.:

$ tar -c --checkpoint=1000 --checkpoint-action=dot /var
...

The same effect may be obtained by:

$ tar -c --checkpoint=.1000 /var
share|improve this answer

My solution displays the percentage of the tarball that is currently being uncompressed and written. I use this when writing out 2GB root filesystem images. You really need a progress bar for these things.What I do is use gzip --list and some sed to get the total uncompressed size of the tarball. From that I calculate the blocking-factor needed to divide the file into 100 parts.Finally, I print a checkpoint message for each block. For a 2GB file this gives about 10MB a block. If that is too big then you can divide the BLOCKING_FACTOR by 10 or 100, but then it's harder to print pretty output in terms of a percentage.

Assuming you are using Bash then you can use the following shell function:

untar_progress () 
{ 
    TARBALL=$1;
    BLOCKING_FACTOR=$(($(gzip --list ${TARBALL} | sed -n -e "s/.*[[:space:]]\+[0-9]\+[[:space:]]\+\([0-9]\+\)[[:space:]].*$/\1/p") / 51200 + 1));
    tar --blocking-factor=${BLOCKING_FACTOR} --checkpoint=1 --checkpoint-action='ttyout=Wrote %u%  \r' -zxf ${TARBALL}
}

If you want to use some other shell that doesn't support shell arithmetic expressions then replace the $((...)) expression with a call to expr or dc or bc to calculate the blocking-factor.

-- Noah Spurrier

share|improve this answer

use the linux command pv:

http://linux.die.net/man/1/pv

it doesn't know the size if it's in the middle of the stream, but it gives a speed and total and from there you can figure out how long it should take and get feedback so you know it hasn't hung.

share|improve this answer

Most unix commands will not give you the sort of direct feedback from which you can do this. Some will give you output on stdout or stderr that you can use.

For something like tar you could use the -v switch and pipe the output to a program that updates a small animation for each line it reads. As tar writes out a list of files it's unravelled the program can update the animation. To do a percent complete you would have to know the number of files and count the lines.

cp doesn't give this sort of output as far as I know. To monitor the progress of cp you would have to monitor the source and destination files and watch the size of the destination. You could write a small c program using the stat (2) system call to get the file size. This would read the size of the source then poll the destination file and update a % complete bar based on the size of the file written to date.

share|improve this answer

You may also be interested in how to do a spinner

share|improve this answer

While getting the actual progress information can be tricky, as Nigel Campbell indicated above, the second problem of how to draw the progress bar can be resolved nicely with the dialog command from http://invisible-island.net/dialog/dialog.html.

share|improve this answer

To make a tar progress bar

tar xzvf pippo.tgz |xargs -L 19 |xargs -I@ echo -n "."

Where "19" is the number of files in the tar divided the length of the intended progress bar. Example: the .tgz contains 140 files and you'll want a progress bar of 76 ".", you can put -L 2.

You'll need nothing else.

share|improve this answer
This is specific to tar, so unless the shell script only consist of tar command, it doesn't really apply to OP's case. – doubleDown Oct 20 '12 at 4:30

I couldn't find bash throbber topic so pasting example code here

https://gist.github.com/3621677

share|improve this answer

If you don't mind against using additional packages - there is an awesome tool, which shows colored information bar while copying data stream - http://clpbar.sourceforge.net/

share|improve this answer

I had the same thing to do today and based on Diomidis answer, here is how I did it (linux debian 6.0.7). Maybe, that could help you :

#!/bin/bash

echo "getting script inode"
inode=`ls -i ./script.sh | cut -d" " -f1`
echo $inode

echo "getting the script size"
size=`cat script.sh | wc -c`
echo $size

echo "executing script"
./script.sh &
pid=$!
echo "child pid = $pid"

while true; do
        let offset=`lsof -o0 -o -p $pid | grep $inode | awk -F" " '{print $7}' | cut -d"t" -f 2`
        let percent=100*$offset/$size
        echo -ne " $percent %\r"
done
share|improve this answer
can you explain what offset calculate . – deven98602 May 9 at 7:46

This lets you know that command is still executing.

while :;do echo -n .;sleep 1;done &
tar zxf packages.tar.gz
kill $!; trap 'kill $!' SIGTERM
share|improve this answer
Could you please elaborate how the code works and what it does? – Flow May 2 at 22:12
An infinite while loop echoes a "." every second, this executes in the background. This will display . in the shell. Run the tar command or any a command you want. When that command finishes executing then kill the last job running in the background. Which is the infinite while loop. – romeror May 2 at 22:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.