aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorepoch <epoch@hack.thebackupbox.net>2021-12-03 15:30:11 +0000
committerepoch <epoch@hack.thebackupbox.net>2021-12-03 15:30:11 +0000
commit307c24fb08c43b4b4638fd16fed685829922c3dc (patch)
treeff31b00e03c7693ce225a077d1868696b246779f
parent70e79463fef28e915926738233913129e80a434b (diff)
downloaduritools-307c24fb08c43b4b4638fd16fed685829922c3dc.tar.gz
uritools-307c24fb08c43b4b4638fd16fed685829922c3dc.zip
dns URIs can now use the "class" param and added file URI support that outputs the mime-type
-rwxr-xr-xurititle19
1 files 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