내 명령은 다음과 같습니다
time find . -type f -print -exec cp {} /dev/null \;
이 명령은 현재 폴더와 하위 폴더에 있는 모든 파일을 찾아 각 파일의 이름을 인쇄하고 /dev/null에 복사합니다. 마지막에는 모든 파일을 복사하는 데 걸린 시간이 표시됩니다.
나에게 필요한 것은 복사된 모든 바이트를 마지막에 계산(표시)하고(읽기 속도를 계산할 수 있도록 // 캐시는 중요하지 않음 //) 및/또는 파일 이름 옆에 각 파일의 크기를 표시하는 것입니다.
각 파일(pv)의 진행 상황을 보여줄 수 있으면 좋을 것 같아요!
이를 위해 저는 Cygwin과 해당 bash 쉘을 사용하고 있지만 스크립트는 실제 Linux 시스템에서도 실행되어야 합니다.
편집하다:아이디어는 파일을 복사하는 것이 아니라 파일을 읽는 것입니다(rsync).
답변1
귀하의 질문을 완전히 이해했는지 확실하지 않지만 다음과 같습니다.
find . -type f -exec pv -N {} {} \; > /dev/null
다음과 같은 출력을 제공합니다.
./file1: 575kB 0:00:00 [1.71GB/s] [=======================>] 100%
./file2: 15.2GB 0:00:07 [2.22GB/s] [==> ] 15% ETA 0:00:38
답변2
cp
및를 사용하는 대신 find
이 작업에서는 을 사용하는 것이 좋습니다 rsync
.
예
$ time rsync -avvz -O --stats --checksum --human-readable \
--acls --itemize-changes --progress \
--out-format='[%t] [%i] (Last Modified: %M) (bytes: %-10l) %-100n' \
"<fromDir>" "<toDir>" | tee /path/to/log.txt
예
그러면 아래와 같은 보고서가 생성됩니다.
주문하다
$ time rsync -avvz -O --stats --checksum --human-readable --acls --itemize-changes --progress --out-format='[%t] [%i] (Last Modified: %M) (bytes: %-10l) %-100n' "How_to_Write_Shared_Libraries" "/home/saml/newdir/." | tee ~/rsync.txt
전송된 각 파일의 세부정보
sending incremental file list
delta-transmission disabled for local transfer or --whole-file
[2014/05/31 15:12:34] [cd+++++++++] (Last Modified: 2014/02/21-15:42:44) (bytes: 4096 ) How_to_Write_Shared_Libraries/
[2014/05/31 15:12:34] [>f+++++++++] (Last Modified: 2013/12/06-19:59:22) (bytes: 766590 ) How_to_Write_Shared_Libraries/dsohowto.pdf
766.59K 100% 20.00MB/s 0:00:00 (xfer#1, to-check=1/3)
[2014/05/31 15:12:34] [>f+++++++++] (Last Modified: 2014/02/21-15:42:44) (bytes: 44 ) How_to_Write_Shared_Libraries/url.txt
44 100% 1.23kB/s 0:00:00 (xfer#2, to-check=0/3)
total: matches=0 hash_hits=0 false_alarms=0 data=766634
전체 전송에 대한 통계
rsync[5923] (sender) heap statistics:
arena: 1073152 (bytes from sbrk)
ordblks: 5 (chunks not in use)
smblks: 1
hblks: 2 (chunks from mmap)
hblkhd: 401408 (bytes from mmap)
allmem: 1474560 (bytes from sbrk + mmap)
usmblks: 0
fsmblks: 96
uordblks: 410512 (bytes used)
fordblks: 662640 (bytes free)
keepcost: 396928 (bytes in releasable chunk)
rsync[5926] (server receiver) heap statistics:
arena: 286720 (bytes from sbrk)
ordblks: 2 (chunks not in use)
smblks: 5
hblks: 3 (chunks from mmap)
hblkhd: 667648 (bytes from mmap)
allmem: 954368 (bytes from sbrk + mmap)
usmblks: 0
fsmblks: 384
uordblks: 180208 (bytes used)
fordblks: 106512 (bytes free)
keepcost: 102336 (bytes in releasable chunk)
rsync[5925] (server generator) heap statistics:
arena: 135168 (bytes from sbrk)
ordblks: 2 (chunks not in use)
smblks: 6
hblks: 2 (chunks from mmap)
hblkhd: 401408 (bytes from mmap)
allmem: 536576 (bytes from sbrk + mmap)
usmblks: 0
fsmblks: 464
uordblks: 88688 (bytes used)
fordblks: 46480 (bytes free)
keepcost: 32800 (bytes in releasable chunk)
전송 통계 요약
Number of files: 3
Number of files transferred: 2
Total file size: 766.63K bytes
Total transferred file size: 766.63K bytes
Literal data: 766.63K bytes
Matched data: 0 bytes
File list size: 143
File list generation time: 0.001 seconds
File list transfer time: 0.000 seconds
Total bytes sent: 667.27K
Total bytes received: 54
sent 667.27K bytes received 54 bytes 1.33M bytes/sec
total size is 766.63K speedup is 1.15
보낸 시간
real 0m0.092s
user 0m0.053s
sys 0m0.008s