Bash aliases: Difference between revisions

From I Will Fear No Evil
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
Just a list of some useful aliases
===Just a list of some useful aliases===


This will grab the file called Uncharted_2022 and keep attempting to copy it until successful
This will grab the file called Uncharted_2022 and keep attempting to copy it until successful

Revision as of 15:54, 20 March 2023

Just a list of some useful aliases

This will grab the file called Uncharted_2022 and keep attempting to copy it until successful

alias scpresume='rsync --partial --progress '

FOO=1; while [[ $FOO -eq 1 ]]; do date ; scpresume -r ./Uncharted_2022 chubbard@50.34.185.18:/share/Movies/2020/  ; FOO=$? ; done ; date