All Questions
1 question
0
votes
1
answer
254
views
Bash loop to read file line by line problem with sqlcmd
I'm reading a .txt file using a while loop:
baseFileDir=./Base_Database_Files/
if [ -f "./SqlFiles.txt" ]; then
while IFS= read -r line || [[ -n "$line" ]]
do
...