Last active
May 11, 2021 08:10
-
-
Save apfelchips/4c46e5684040135e5922b785b8f4cdcf to your computer and use it in GitHub Desktop.
lftp script, but it's actually crossplatform
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env pwsh -noLogo -noProfile | |
# get lftp for windows here: https://nwgat.ninja/lftp-for-windows/ | |
# doc: https://manpages.debian.org/lftp/lftp.1.en.html | |
$USER='' | |
$PASS='' | |
$REMOTEHOSTNAME='' | |
$LOCALDIR='./homedir-subfolder' | |
$REMOTEDIR='/var/www/' | |
$MIRROR_OPTIONS='--exclude .git/ --exclude .DS_Store --exclude desktop.ini --exclude thumbs.db --exclude .vscode-server/' | |
if ( ($args[0] -ne "-y") -and ($args[0] -ne "-yes") ){ | |
Write-Information -InformationAction Continue "dry run:" | |
# Start-Process -FilePath "$(GET-Command "lftp")" -WorkingDirectory ${HOME} -ArgumentList "-e", "`"mirror --dry-run --verbose --continue --delete --no-perms ${MIRROR_OPTIONS} ${REMOTEDIR} ${LOCALDIR}; bye`"", "-u", "`"${USER},${PASS}`"", "${REMOTEHOSTNAME}" | |
lftp -u "`"${USER},${PASS}`"" -e "`"lcd ${HOME}; mirror --dry-run --parallel=6 --verbose --continue --delete --no-perms ${MIRROR_OPTIONS} ${REMOTEDIR} ${LOCALDIR}; bye`"" "${REMOTEHOSTNAME}" | |
Write-Information -InformationAction Continue "This was a dry run." | |
} else { | |
Write-Information -InformationAction Continue "doing it:" | |
lftp -u "`"${USER},${PASS}`"" -e "`"lcd ${HOME}; mirror --parallel=6 --continue --delete --no-perms ${MIRROR_OPTIONS} ${REMOTEDIR} ${LOCALDIR}; bye`"" "${REMOTEHOSTNAME}" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env pwsh -noLogo -noProfile | |
# get lftp for windows here: https://nwgat.ninja/lftp-for-windows/ | |
# doc: https://manpages.debian.org/lftp/lftp.1.en.html | |
$USER='' | |
$PASS='' | |
#$SSH_OPTIONS='-i ~/.ssh/privatkey.pem' | |
$REMOTEHOSTNAME='' | |
$LOCALDIR='./homedir-subfolder' | |
$REMOTEDIR='/var/www/' | |
$MIRROR_OPTIONS='--exclude .git/ --exclude .DS_Store --exclude desktop.ini --exclude thumbs.db --exclude .vscode-server/' | |
if ( ($args[0] -ne "-y") -and ($args[0] -ne "-yes") ){ | |
Write-Information -InformationAction Continue "dry run:" | |
lftp -u "${USER},${PASS}" "sftp://${REMOTEHOSTNAME}" -e "`"set sftp:connect-program `'ssh -a -x ${SSH_OPTIONS}`'; lcd ${HOME}; mirror --dry-run --parallel=6 --continue --delete --no-perms ${MIRROR_OPTIONS} ${REMOTEDIR} ${LOCALDIR}; bye`"" | |
Write-Information -InformationAction Continue "This was a dry run." | |
} else { | |
Write-Information -InformationAction Continue "doing it:" | |
lftp -u "`"${USER},${PASS}`"" "sftp://${REMOTEHOSTNAME}" -e "`"set sftp:connect-program `'ssh -a -x ${SSH_OPTIONS}`'; lcd ${HOME}; mirror --parallel=6 --continue --delete --no-perms ${MIRROR_OPTIONS} ${REMOTEDIR} ${LOCALDIR}; bye`"" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env pwsh -noLogo -noProfile | |
# get lftp for windows here: https://nwgat.ninja/lftp-for-windows/ | |
# doc: https://manpages.debian.org/lftp/lftp.1.en.html | |
$USER='' | |
$PASS='' | |
$REMOTEHOSTNAME='' | |
$LOCALDIR='./homedir-subfolder' | |
$REMOTEDIR='/var/www/' | |
$MIRROR_OPTIONS='--exclude .git/ --exclude .DS_Store --exclude desktop.ini --exclude thumbs.db --exclude .vscode-server/' | |
if ( ($args[0] -ne "-y") -and ($args[0] -ne "-yes") ){ | |
Write-Information -InformationAction Continue "dry run:" | |
# Start-Process -FilePath "$(GET-Command "lftp")" -WorkingDirectory ${HOME} -ArgumentList "-e", "`"mirror --dry-run --verbose --parallel=6 --continue --delete --no-perms ${MIRROR_OPTIONS} --reverse ${LOCALDIR} ${REMOTEDIR}`"", "${REMOTEHOSTNAME}" | |
lftp -u "`"${USER},${PASS}`"" -e "`"lcd ${HOME}; mirror --dry-run --verbose --parallel=6 --continue --delete --no-perms ${MIRROR_OPTIONS} --reverse ${LOCALDIR} ${REMOTEDIR}; bye`"" "${REMOTEHOSTNAME}" | |
Write-Information -InformationAction Continue "This was a dry run." | |
} else { | |
Write-Information -InformationAction Continue "doing it:" | |
lftp -u "`"${USER},${PASS}`"" -e "`"lcd ${HOME}; mirror --parallel=6 --continue --delete --no-perms ${MIRROR_OPTIONS} --reverse ${LOCALDIR} ${REMOTEDIR}; bye`"" "${REMOTEHOSTNAME}" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env pwsh -noLogo -noProfile | |
# get lftp for windows here: https://nwgat.ninja/lftp-for-windows/ | |
# doc: https://manpages.debian.org/lftp/lftp.1.en.html | |
$USER='' | |
$PASS='' | |
#$SSH_OPTIONS='-i ~/.ssh/privatkey.pem' | |
$REMOTEHOSTNAME='' | |
$LOCALDIR='./homedir-subfolder' | |
$REMOTEDIR='/var/www/' | |
$MIRROR_OPTIONS='--exclude .git/ --exclude .DS_Store --exclude desktop.ini --exclude thumbs.db --exclude .vscode-server/' | |
if ( ($args[0] -ne "-y") -and ($args[0] -ne "-yes") ){ | |
Write-Information -InformationAction Continue "dry run:" | |
lftp -u "${USER},${PASS}" "sftp://${REMOTEHOSTNAME}" -e "`"set sftp:connect-program `'ssh -a -x ${SSH_OPTIONS}`'; lcd ${HOME}; mirror --dry-run --parallel=6 --continue --delete --no-perms ${MIRROR_OPTIONS} --reverse ${LOCALDIR} ${REMOTEDIR}; bye`"" | |
Write-Information -InformationAction Continue "This was a dry run." | |
} else { | |
Write-Information -InformationAction Continue "doing it:" | |
lftp -u "`"${USER},${PASS}`"" "sftp://${REMOTEHOSTNAME}" -e "`"set sftp:connect-program `'ssh -a -x ${SSH_OPTIONS}`'; lcd ${HOME}; mirror --parallel=6 --continue --delete --no-perms ${MIRROR_OPTIONS} --reverse ${LOCALDIR} ${REMOTEDIR}; bye`"" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment