shell之圖形進度條

來源:互聯網
上載者:User

在Shell指令碼的編寫應用中,有時候會需要用到圖形介面的案例,比如預設cp拷貝檔案為靜默模式,無法看到拷貝的進度與百分比。而dialog正是為Shell提供圖形介面的工具,該工具可以為Shell指令碼提供各式各樣的圖形介面,今天為大家介紹的是dialog提供的進度條圖形功能。

dialog指令可以單獨執行,各式為dialog --title "Copy" --gauge "files" 6 70 10

備忘:title表示圖形進度條的標題,gauge為本文內容,進度條高度為6,寬度70,顯示進度為10%

for i in {1..100} ; do sleep 1; echo $i | dialog --title 'Copy' --gauge 'I am busy!' 10 70 0; done

下面案例中通過統計源檔案個數,再據此計算出拷貝檔案的百分比,在Shell中提供進度的顯示。該指令碼有兩個參數,第一個參數為源檔案路徑,第二個參數為目標路徑。如果您的應用案例不同可以據此稍作修改即可使用。

  1. #!/bin/bash
  2. #Description: A shell script to copy parameter1 to parameter2 and Display a progress bar
  3. #Author:Jacob
  4. #Version:0.1 beta
  5. # Read the parameter for copy,$1 is source dir and $2 is destination dir
  6. dir=$1/*
  7. des=$2
  8. # Test the destination dirctory whether exists
  9. [ -d $des ] && echo "Dir Exist" && exit 1
  10. # Create the destination dirctory
  11. mkdir $des
  12. # Set counter, it will auto increase to the number of source file
  13. i=0
  14. # Count the number of source file
  15. n=`echo $1/* |wc -w`
  16. for file in `echo $dir`
  17.   do
  18. # Calculate progress
  19. percent=$((100*(++i)/n))
  20. cat <<EOF
  21. XXX
  22. $percent
  23. Copying file $file ...
  24. XXX
  25. EOF
  26. /bin/cp -r $file $des &>/dev/null
  27.   done | dialog --title "Copy" --gauge "files" 6 70
  28. clear

效果

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.