Display all lines of a list, even if there is no newline at the end

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
pull/2236/head
Mcat12 6 years ago
parent 8084c4b2a3
commit 1b276a74fe
No known key found for this signature in database
GPG Key ID: ABB8FC9789AF524D

@ -222,7 +222,7 @@ Displaylist() {
verbose=false
echo -e "Displaying $string:\n"
count=1
while IFS= read -r RD; do
while IFS= read -r RD || [ -n "${RD}" ]; do
echo " ${count}: ${RD}"
count=$((count+1))
done < "${listMain}"

Loading…
Cancel
Save