There can be a number of reasons for starting a file copy from the command line (eg. you're on a headless server

). Copying large files (eg. virtual machine images) can take some time and without feedback you can just guess how much is still left. The
dd command can print the desired progress, but it takes more than just a command line option to get there. Here's an example to make it print the progress every 10 seconds:
dd if=input_file of=output_file bs=1M & pid=$! && while sleep 10 && kill -USR1 $pid 2> /dev/null; do :; done
Recent comments
1 day 14 hours ago
1 day 14 hours ago
3 days 19 hours ago
1 week 1 day ago
1 week 1 day ago
1 week 2 days ago
1 week 2 days ago
1 week 2 days ago
1 week 4 days ago
1 week 6 days ago