How to disable --progress

I’m setting up a StorJ driver for HashBackup. For now I’m using the uplink CLI. Is there any way to disable --progress?

Hello @hashbackup ,
Welcome to the forum!

uplink cp --progress=false 1.mkv sj://my-bucket/1.mkv

But ctrl-c would not work too.

Thanks! I tried adding --progress false and --no-progress at the end but didn’t try this one! I ended up using subprocess.check_output to manage stdin and stdout, but this is still useful because I get multiple progress lines and don’t need any of them unless debugging is enabled.

1 Like