11 lines
235 B
Bash
Executable File
11 lines
235 B
Bash
Executable File
#!/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
|