FastCopy 是一个 Windows 平台下的文件复制工具,不适用于 Linux
rsync -avh --progress source/ destination/
sudo apt-get install pv # 安装 pv 工具
pv source_file | cp /dev/stdin destination_file
scp -r -v -P source/ user@remote_host:/destination/
这些方法都可以在 Linux 系统中查看文件传输进度。请根据您的需求选择合适的命令。