Last active
January 31, 2023 12:10
-
-
Save mjf/0cb739efe0012c7191347b2b0e637a65 to your computer and use it in GitHub Desktop.
lftp(1) configuration
This file contains hidden or 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
set cmd:prompt '\U \S\n$ ' | |
set ftp:port-range 21000-21999 | |
set ftp:sync-mode off | |
set ssl:verify-certificate on | |
debug 4 | |
alias ledit 'local edit' | |
alias lls 'local ls' | |
alias nocertverify 'set ssl:verify-certificate off' | |
alias certverify 'set ssl:verify-certificate on' | |
alias reconnect 'close; cache flush; cd .' | |
alias rget 'mirror' | |
alias rput 'mirror -R' | |
alias vi 'edit' | |
alias lvi 'ledit' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment