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:
<metadesc>Just a small list of bash alias commands that I find useful.</metadesc>
===Just a list of some useful aliases===
===Just a list of some useful aliases===



Latest revision as of 14: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