aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@firemail.cc>2023-05-31 19:42:45 +0530
committersinanmohd <sinan@firemail.cc>2023-05-31 19:42:45 +0530
commitc7eb21d8f8542a42b3c92ddc011937a88ea97bab (patch)
tree926ca2cc2a7a553b50151176705135fed29c01f2
parent40bf0a7aa7951a3ceb9dcb2d126f1bc5307a50eb (diff)
1337x: fix: parse_table returns invalid name
-rwxr-xr-x1337x2
1 files changed, 1 insertions, 1 deletions
diff --git a/1337x b/1337x
index ac10a94..c988144 100755
--- a/1337x
+++ b/1337x
@@ -88,7 +88,7 @@ parse_table()
"$(echo "${link##*/}" | tr '-' ' ')"
;;
esac
- done | "$menu" -p "󰎁 " -il 20 | grep -o '[A-Z][a-z].*' | tr ' ' '-'
+ done | "$menu" -p "󰎁 " -il 20 | sed 's/.* //g' | tr ' ' '-'
unset intbody name link sneed leech size
}