Bash aliases: Difference between revisions

From I Will Fear No Evil
Jump to navigation Jump to search
(Created page with "Just a list of some useful aliases <pre> alias scpresume='rsync --partial --progress ' FOO=1; while $FOO -eq 1 ; do date ; scpresume -r ./Uncharted_2022 chubbard@50.34....")
 
mNo edit summary
 
(2 intermediate revisions 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
<pre>
<pre>
alias scpresume='rsync --partial --progress '
alias scpresume='rsync --partial --progress '

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