Bash aliases: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
Just a list of some useful aliases | <metadesc>Just a small list of bash alias commands that I find useful.</metadesc> | ||
===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 |
Latest revision as of 13:56, 25 April 2024
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