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

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
Mcat12 2018-07-08 16:03:16 -04:00
parent 8084c4b2a3
commit 1b276a74fe
No known key found for this signature in database
GPG Key ID: ABB8FC9789AF524D
1 changed files with 1 additions and 1 deletions

View File

@ -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}"