diff options
author | sinanmohd <sinan@firemail.cc> | 2023-05-31 19:42:45 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-05-31 19:42:45 +0530 |
commit | c7eb21d8f8542a42b3c92ddc011937a88ea97bab (patch) | |
tree | 926ca2cc2a7a553b50151176705135fed29c01f2 | |
parent | 40bf0a7aa7951a3ceb9dcb2d126f1bc5307a50eb (diff) |
1337x: fix: parse_table returns invalid name
-rwxr-xr-x | 1337x | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |