mv myfile1.tst myfile2.tst
To time how long it takes to make a copy of a file...
time cp myfile1.tst myfile2.tst
To recursively copy a directory and its contents including progress reporting and timing...
time rsync -a --progress /mymount1/mydir /mymount2
time rsync -rlptgoD --progress /mymount1/mydir /mymount2
The two commands above are functionally identical. i.e. -a is the same as -rlptgoDrsync mydir1 mydir2
rsync mydir1/* mydir2
rsync -r mydir1/* mydir2
rsync -ri mydir1/* mydir2
rsync -ri mydir1/* mydir2
rsync -rv mydir1/* mydir2
rsync -r --stats mydir1/* mydir2
rsync -r --progress mydir1/* mydir2
time rsync -ahiv --stats mydir1/* mydir2
rsync -ahv --progress --dry-run --update --backup --suffix=.bak /mymount1/mydir /mymount2
rsync -ahv --progress --update --backup --suffix=.bak /mymount1/mydir /mymount2
TODO:
pv source >destination
cat source >destination