diff options
Diffstat (limited to 'examples/filebrowser/backend-gopher.sh')
-rwxr-xr-x | examples/filebrowser/backend-gopher.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/filebrowser/backend-gopher.sh b/examples/filebrowser/backend-gopher.sh new file mode 100755 index 0000000..e606667 --- /dev/null +++ b/examples/filebrowser/backend-gopher.sh @@ -0,0 +1,19 @@ +#!/bin/bash +#give a list of files. +#wait for a selection on stdin +#cd or start that file +#repeat. +server=gopher.hacking.allowed.org +port=70 +selection=/ +while true;do +#not sure why this needs to be printed to show up every time. + printf '%s\n' "$selection" | ncat "$server" "$port" | tee /dev/stderr | grep -v ^i | cut -f2 | tr -d '\r' +### need to ask user for input in the form of a pop-up window if the selected target was of type 7 + read -r selection + if [ "_" = "_$selection" ];then + echo "looks like there's nothing here. exiting." >&2 + exit 1 + fi + echo +done |