original dla import which produce tab-delmited output
[koha-dla] / dla-import.sh
diff --git a/dla-import.sh b/dla-import.sh
new file mode 100755 (executable)
index 0000000..11b0b61
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/sh -xe
+
+ls /mnt/share/DLA/inventura/*/*-*/upload/inv/*.pdX | while read path ; do
+       echo "# $path"
+       source_id=$(echo $path | cut -d/ -f6)
+       date_scanned=$(echo $path | cut -d/ -f7)
+       strings $path | grep '130[0-9][0-9][0-9][0-9][0-9][0-9][0-9]' | sed -e 's/^.*\(130[0-9][0-9][0-9][0-9][0-9][0-9][0-9]\).*$/\1/' -e "s/^/$date_scanned\t$source_id\t/"
+done