2021-01-28 13:49:56 +01:00
|
|
|
#!/bin/bash
|
|
|
|
if [ -n "$1" ]; then
|
|
|
|
printf "start at reading no. L-"
|
|
|
|
read -r start_no
|
|
|
|
else
|
|
|
|
start_no="$(tail -n1 readings_index | cut -f3)"
|
|
|
|
fi
|
2021-01-27 22:24:33 +01:00
|
|
|
for ((n=$start_no;n<=4000;n++)); do
|
|
|
|
printf "index of reading no. L-%s:" "$n"
|
2021-01-27 19:51:07 +01:00
|
|
|
read -r index
|
2021-01-28 13:49:56 +01:00
|
|
|
if [ "$index" = "" ]; then
|
|
|
|
continue
|
|
|
|
elif [ "$index" -gt 2200 ]; then
|
2021-01-27 22:24:33 +01:00
|
|
|
echo "Kanji from third book. Just adding index and reading index for now"
|
|
|
|
printf '%s\t\t%s\n' "$index" "$n" | tee -ai readings_index
|
2021-01-28 13:49:56 +01:00
|
|
|
elif [ "$index" -gt 0 ]; then
|
2021-01-27 22:24:33 +01:00
|
|
|
line="$(grep -P "^$index\t" lesungen)"
|
|
|
|
printf '%s\t%s\n' "$line" "$n" | tee -ai readings_index
|
2021-01-28 13:49:56 +01:00
|
|
|
elif [ "$index" -eq 0 ]; then
|
|
|
|
n="$(( n - 2 ))";
|
2021-01-27 22:24:33 +01:00
|
|
|
fi
|
2021-01-27 19:51:07 +01:00
|
|
|
done
|