1
0

Initial commit

p#	new file:   runwikiq.sh
This commit is contained in:
2018-06-02 15:32:19 -07:00
commit 72633c193b
202 changed files with 21929 additions and 0 deletions

10
runwikiq.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
wikiq_path="PATH_TO_WIKIQ"
raw_data_path="wikia_2010_04"
of_path="wikiq_wikia_2010_all_nopersistance"
dumps="$(ls $raw_data_path)"
for dumpname in $dumps
do
python3 $wikiq_path -u $raw_data_path/$dumpname -o $of_path
done