Fix wrong starting line (was for debugging)

This commit is contained in:
Tobias Reisinger 2024-05-23 18:28:10 +02:00
parent 1b891407a3
commit 2aa4ae8b58
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE

View file

@ -76,7 +76,7 @@ _handle_entry() {
} }
file_lines=$(wc -l < "$file") file_lines=$(wc -l < "$file")
line=129 line=0
while [[ $line -lt $file_lines ]]; do while [[ $line -lt $file_lines ]]; do
entry=$(tail -n +$line "$file" | awk '/^$/{exit} {print} ') entry=$(tail -n +$line "$file" | awk '/^$/{exit} {print} ')
entry_len=$(echo "$entry" | wc -l) entry_len=$(echo "$entry" | wc -l)