summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatolaZ <katolaz@freaknet.org>2018-08-02 09:16:13 +0100
committerKatolaZ <katolaz@freaknet.org>2018-08-02 09:16:13 +0100
commit41c081e96ea877055d7418c6775d6e755784379f (patch)
treec0116eda298d4c327b852f8addb9c417675de0d4
parent11856792221c7faa2f423bc106d1f4b1482bcdb8 (diff)
minor fix in burrow
-rwxr-xr-xburrow9
-rwxr-xr-xurl_to_id9
2 files changed, 11 insertions, 7 deletions
diff --git a/burrow b/burrow
index 8138ca5..9335ba8 100755
--- a/burrow
+++ b/burrow
@@ -15,7 +15,7 @@
###
###------------------------------------------------
###
-### (C) Vincenzo 'KatolaZ' Nicosia <katolaz@freaknet.org>
+### (C) 2018 Vincenzo 'KatolaZ' Nicosia <katolaz@freaknet.org>
###
### Use, modify, redistribute under the terms of the GNU General
### Public License version 3 or, at your option, any other version.
@@ -27,14 +27,9 @@ get_dirs(){
#IFS=$'\t\n'
IFS="|"
src_dir=$(echo "${src_id}" | cut -c -2)
+ touch "${src_dir}/${src_id}"
while read name sel host port; do
-## echo " --- name: \"$name\""
-## echo " --- sel: \"$sel\""
-## echo " --- host: \"$host\""
-## echo " --- port: \"$port\""
TYPE=$(echo "$name" | cut -c 1)
-## echo " --- TYPE \"$TYPE\""
-## echo "$TYPE, $name, $sel, $host, $port"
port=$(echo $port | sed -r -e 's/\r//g')
dir_id=$(echo "${TYPE}|${sel}|${host}|${port}" | sed 's/^1||/1|\/|/g')
dest_id=$(echo "${dir_id}" | sha256sum | cut -d " " -f 1 )
diff --git a/url_to_id b/url_to_id
index 4d96442..f9317e6 100755
--- a/url_to_id
+++ b/url_to_id
@@ -14,6 +14,15 @@
## TYPE|SEL|HOST|PORT|SHA256
##
## which is understood by `burrow`
+##
+## -----------------------
+##
+## (C) 2018 Vincenzo 'KatolaZ' Nicosia <katolaz@freaknet.org>
+##
+## Use, modify, redistribute under the terms of the GNU General
+## Public License version 3 or, at your option, any other version.
+##
+##
###