- Nested backticks in bash script not working
- COUNT=`cat "$NEWLIST" | wc -l | awk ' { print $1 } ` `
- command substitution: line 74: unexpected EOF while looking for matching `''
- COUNT=`cat "$NEWLIST" | wc -l | awk ' { print $1 } ' `
- COUNT=$(wc -l < "$NEWLIST")