Fix wrong starting line (was for debugging)
This commit is contained in:
parent
1b891407a3
commit
2aa4ae8b58
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue