From 307c24fb08c43b4b4638fd16fed685829922c3dc Mon Sep 17 00:00:00 2001 From: epoch Date: Fri, 3 Dec 2021 15:30:11 +0000 Subject: dns URIs can now use the "class" param and added file URI support that outputs the mime-type --- urititle | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/urititle b/urititle index 1889784..efac514 100755 --- a/urititle +++ b/urititle @@ -74,8 +74,13 @@ magnet) ;; dns) if [ "$qs" ] ; then - export QUERY_STRING="$qs" - type="-t $(query_param "type")" + export QUERY_STRING="$(printf "%s\n" "$qs" | tr 'A-Z' 'a-z' | tr ';' '&')" + if [ "$(query_param type)" ];then + type="-t $(query_param "type")" + fi + if [ "$(query_param class)" ];then + class="-c $(query_param "class")" + fi fi if [ "$domain" ];then server="@$domain" @@ -83,7 +88,7 @@ dns) else server="" fi - dig $type "$path" +short $server | tr '\n' ' ' + dig $class $type "$path" +short $server | tr '\n' ' ' echo # the tr above strips out the trailing \n ;; ftp) @@ -136,6 +141,14 @@ ssh) fi printf "title: %s\n" "$(printf "" | nc "$domain" "$port" | head -n1)" ;; +file) + file="$(uriunescape "$path")" + if [ -e "$file" ];then + mime-type -v "$file" + else + printf "file '%s' doesn't exist.\n" "$file" + fi + ;; *) printf "DONT KNOW HOW TO GET TITLE FOR THIS URL: %s\n" "$1" esac -- cgit v1.2.3