]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - rc
a0063f3e2dd86c80aab0b4886937bba8deabed53
[config/dotfiles.git] / rc
1 # lftp configuration file.
2
3
4 # Display all files (even hidden ones) with 'ls'.
5 set ftp:list-options -a
6
7 # Store passwords in the bookmarks file.
8 set bmk:save-passwords yes
9
10 # Create new "command" sync which will sync local directories with remote ones
11 # and transfer all missing/outdated files. Local files which don't exist
12 # anymore are removed on the server.
13 alias sync mirror --verbose --reverse --delete --dereference --exclude .DS_Store
14
15 # Create new ".." command to go one directory up the tree.
16 alias .. cd ..
17 # Create new "..." command to go two directories up the tree.
18 alias ... cd ../..