furl format

This commit is contained in:
Bob Mottram 2017-03-08 18:32:28 +00:00
parent a290548c1a
commit 7042fa0015
1 changed files with 9 additions and 1 deletions

View File

@ -490,8 +490,16 @@ function create_tahoelafs_client {
sed -i 's|tub.location =.*|tub.location = disabled|g' $client_dir/tahoe.cfg
}
function tahoelafs_parse_furl {
furl="$1"
furl_1=$(cat "$furl" | awk -F ' ' '{print $1}')
furl_2=$(cat "$furl" | awk -F ':' '{print $5}')
echo "${furl_1}:${furl_2}"
}
function get_tahoelafs_furl {
echo "$(cat /home/tahoelafs/storage/private/storage.furl)"
furl="$(cat /home/tahoelafs/storage/private/storage.furl)"
echo "$(tahoelafs_parse_furl \"$furl\")"
}
function get_tahoelafs_nick {