User Tools

Site Tools


bash:files:read_a_file:basic_read

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
bash:files:read_a_file:basic_read [2021/01/26 13:21] peterbash:files:read_a_file:basic_read [2021/01/26 16:47] (current) peter
Line 42: Line 42:
 </WRAP> </WRAP>
  
 +----
 +
 +===== Checking that returned line is not empty =====
 +
 +<code bash>
 +#!/bin/bash
 +while IFS='' read -r line || [[ -n "$line" ]]; do
 +  echo "Text read from file: $line"
 +done < "$1"
 +</code>
 +
 +<WRAP info>
 +**NOTE:**  The **-n** checks if the string is not null.
 +
 +This is the opposite of **-z**, which checks if a string is null, i.e. it has zero length.
 +
 +</WRAP>
  
bash/files/read_a_file/basic_read.1611667306.txt.gz · Last modified: 2021/01/26 13:21 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki