summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfilebrowser/backend-gopher.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/filebrowser/backend-gopher.sh b/filebrowser/backend-gopher.sh
index 288e228..54b39c5 100755
--- a/filebrowser/backend-gopher.sh
+++ b/filebrowser/backend-gopher.sh
@@ -8,7 +8,7 @@ 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
+ 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
echo