From b8862f904da166b7e4f60c329d165415a9c19e96 Mon Sep 17 00:00:00 2001 From: Simon Vetter Date: Wed, 13 Mar 2013 18:26:34 -0700 Subject: [PATCH] readme enhancements --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 22321a5..15248d3 100644 --- a/README.md +++ b/README.md @@ -34,32 +34,44 @@ You can either use afpfs to mount an AFP share with fuse or with the command-lin Mount the time_travel volume from delorean.local (in this example, my time capsule's hostname) on /mnt/timetravel without authentication: +```bash $ mount_afp afp://delorean.local/time_travel /mnt/timetravel +``` Same, with authentication: +```bash $ mount_afp afp://simon:mypassword@delorean.local/time_travel /mnt/timetravel +``` Same, with authentication, forcing the UAM of your choice (usually not needed): +```bash $ mount_afp afp://simon;AUTH=DHX2:mypassword@delorean.local/time_travel /mnt/timetravel +``` Unmount the volume: +```bash $ fusermount -u /mnt/timetravel +``` #### command line client Open volume time_travel on delorean.local: +```bash $ afpcmd afp://simon:mypassword@delorean.local/time_travel +``` Connect anonymously to delorean.local, list all available volumes: +```bash $ afpcmd afp://simon:mypassword@delorean.local/ +``` cd to change directories, ls to list, get file to retrieve file, put file to put file... - ... and help for a list of supported commands. +and help for a list of supported commands. ### Credits and license