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 19 hours ago
3 days 3 hours ago
3 days 7 hours ago
3 days 11 hours ago
5 days 8 hours ago
1 week 9 hours ago
1 week 2 days ago
1 week 5 days ago
2 weeks 47 min ago