A progress bar (Gauge Box)-dialog Linux

Source: Internet
Author: User
  • You can createProgress bar(Progress indicator) When copying/moving files or making backups using
    Gauge Box.
  • It displays a meter along the bottom of the box. The meter indicates the percentage. New percentages are read from standard input, one integer per line. The meter is updated to reflect each new percentage.
  • If the standard input reads the string "start_bar", then the first line following is taken as an integer percentage, then subsequent lines up to another "start_bar" are used for a new prompt. the gauge exits when EOF is reached on the standard input.
  • The syntax is as follows:
echo percentage | dialog --gauge "text" height width percentecho "10" | dialog --gauge "Please wait" 10 70 0echo "50" | dialog --gauge "Please wait" 10 70 0echo "100" | dialog --gauge "Please wait" 10 70 0
  • However, you need to use
    While or
    For loop to show 0 to 100% progress. In this example,
    For Loop is used to display progress:
for i in $(seq 0 10 100) ; do sleep 1; echo $i | dialog --gauge "Please wait" 10 70 0; done
Example

Create a shell script dvdcopy. sh:

#!/bin/bash# dvdcopy.sh - A sample shell script to display a progress bar# set counter to 0 counter=0(# set infinite while loopwhile :docat <<EOFXXX$counterDisk copy /dev/dvd to /home/data ( $counter%):XXXEOF# increase counter by 10(( counter+=10 ))[ $counter -eq 100 ] && break# delay it a specified amount of time i.e 1 secsleep 1done) |dialog --title "File Copy" --gauge "Please wait" 7 70 0

Save and close the file. Run it as follows:

chmod +x dvdcopy.sh./dvdcopy.sh

Sample outputs:

A sample progress bar (Gauge Box)

File copy progress bar with Dialog
  • Create a shell script called PCP. sh:
#!/bin/bash# pcp.sh: A shell script to copy /bin/* and /etc/* files#         Display a progress bar while copying files.  # * Based upon Greg's (GreyCat's) GPLd wiki example. *# --------------------------------------------------------# Create an array of all files in /etc and /bin directoryDIRS=(/bin/* /etc/*) # Destination directoryDEST="/tmp/test.$$" # Create $DEST if does not exits[ ! -d $DEST ] && mkdir -p $DEST ## Show a progress bar# ---------------------------------# Redirect dialog commands input using substitution#dialog --title "Copy file" --gauge "Copying file..." 10 75 < <(   # Get total number of files in array   n=${#DIRS[*]};     # set counter - it will increase every-time a file is copied to $DEST   i=0    #   # Start the for loop    #   # read each file from $DIRS array    # $f has filename    for f in "${DIRS[@]}"   do      # calculate progress      PCT=$(( 100*(++i)/n ))       # update dialog box cat <<EOFXXX$PCTCopying file "$f"...XXXEOF  # copy file $f to $DEST   /bin/cp $f ${DEST} &>/dev/null   done) # just delete $DEST directory/bin/rm -rf $DEST

Save and close the file. Run it as follows:

chmod +x pcp.sh./pcp.sh

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.