這是一個可以顯示Linux命令的工具

大雄45發表於2020-02-18
Progress進度檢視器是一個簡單的程式,可用於顯示[neiqian]Coreutils[/neiqian] 命令的進度。它使用來自檔案描述符的資訊來確定 命令的進度。Progress的優點在於它可以與其他 Linux命令一起使用,比如[neiqian]watch[/neiqian]。
實驗環境
  1. Centos7.7 Minimal
  2. Progress工具的github地址:https://github.com/Xfennec/progress
安裝

Progress工具依賴ncurses庫,先安裝ncurses-devel然後再編譯安裝progress

[root@localhost ~]# yum -y install ncurses-devel
[root@localhost ~]# git clone https://github.com/Xfennec/progress
[root@localhost ~]# cd progress/
[root@localhost progress]# make && make install
執行progress

如果沒有命令在執行,那麼progress程式將退出並告訴你,沒有命令正在執行。

[root@localhost ~]# progress
No command currently running: cp, mv, dd, tar, cat, rsync, grep, fgrep, egrep, cut, sort, md5sum, sha1sum, sha224sum, sha256sum, sha384sum, sha512sum, adb, gzip, gunzip, bzip2, bunzip2, xz, unxz, lzma, unlzma, 7z, 7za, zcat, bzcat, lzcat, split, gpg, or wrong permissions.

這是一個可以顯示Linux命令的工具這是一個可以顯示Linux命令的工具
使用cp命令複製一個檔案,當拷貝一個大檔案的時候可以看到進度

[root@localhost ~]# cp -p CentOS-7-x86_64-Minimal-1908.iso /tmp/
# 再開啟一個終端,輸入progress檢視任務進度
[root@localhost ~]# progress

這是一個可以顯示Linux命令的工具這是一個可以顯示Linux命令的工具
如果需要知道移動或者複製大檔案的剩餘時間,可以新增 -w選項,隱藏全部訊息可以使用 -q

[root@localhost ~]# cp -p CentOS-7-x86_64-Minimal-1908.iso /tmp/
# 再開啟一個終端,輸入progress檢視任務進度
[root@localhost ~]# progress -wq

這是一個可以顯示Linux命令的工具這是一個可以顯示Linux命令的工具

progress和watch命令一起使用

Watch配合progress命令使用,可以實時顯示檔案傳輸的進度:

[root@localhost ~]# cp -p CentOS-7-x86_64-Minimal-1908.iso /tmp/
# 再開啟一個終端,輸入progress檢視任務進度
[root@localhost ~]# watch progress -wq

這是一個可以顯示Linux命令的工具這是一個可以顯示Linux命令的工具

總結

progress只需掃描/proc以查詢感興趣的命令,然後檢視目錄fd和fdinfo以查詢開啟的檔案和查詢位置,並報告最大檔案的狀態。

原文地址: https://www.linuxprobe.com/linux-progress-tools.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2676035/,如需轉載,請註明出處,否則將追究法律責任。

相關文章