picocreator
commited on
Commit
·
f51cd13
1
Parent(s):
576647b
comment out sleep safety (im lazy, i want it to go faster)
Browse files
scripts/compress-all-jsonl.sh
CHANGED
@@ -16,6 +16,7 @@ find "$BASE_DIR" -type f -name '*.jsonl' | awk -F/ 'BEGIN{OFS="/"}{$NF=""; print
|
|
16 |
do
|
17 |
# Process each directory
|
18 |
bash "$SCRIPT_DIR/build-jsonl-archive-in-folder.sh" "$DIR" &
|
|
|
19 |
done
|
20 |
|
21 |
# Sleep for 5 second to allow the background processes to start
|
|
|
16 |
do
|
17 |
# Process each directory
|
18 |
bash "$SCRIPT_DIR/build-jsonl-archive-in-folder.sh" "$DIR" &
|
19 |
+
# sleep 1
|
20 |
done
|
21 |
|
22 |
# Sleep for 5 second to allow the background processes to start
|
scripts/decompress-all-jsonl.sh
CHANGED
@@ -16,6 +16,7 @@ find "$BASE_DIR" -type f -name 'result-jsonl.tar.gz' | awk -F/ 'BEGIN{OFS="/"}{$
|
|
16 |
do
|
17 |
# Process each directory
|
18 |
bash "$SCRIPT_DIR/build-jsonl-files-from-archive.sh" "$DIR" &
|
|
|
19 |
done
|
20 |
|
21 |
# Sleep for 5 second to allow the background processes to start
|
|
|
16 |
do
|
17 |
# Process each directory
|
18 |
bash "$SCRIPT_DIR/build-jsonl-files-from-archive.sh" "$DIR" &
|
19 |
+
# sleep 1
|
20 |
done
|
21 |
|
22 |
# Sleep for 5 second to allow the background processes to start
|