bash:files:read_a_file:basic_read
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
bash:files:read_a_file:basic_read [2021/01/26 13:20] – created peter | bash:files:read_a_file:basic_read [2021/01/26 16:47] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== BASH - Files - Read a file - Basic read ====== | ====== BASH - Files - Read a file - Basic read ====== | ||
+ | |||
+ | <code bash> | ||
+ | while read -r line; do | ||
+ | printf ' | ||
+ | done < " | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * **line**: | ||
+ | * **-r**: | ||
+ | * Without this option, any unescaped backslashes in the input will be discarded. | ||
+ | * You should almost always use the **-r** option with read. | ||
+ | * **< " | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Prevent removal of leading and trailing white-space characters ===== | ||
+ | |||
+ | <code bash> | ||
+ | while IFS= read -r line; do | ||
+ | printf ' | ||
+ | done < " | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | The **IFS** (internal field separator) is often set to support reads. | ||
+ | |||
+ | * **IFS= **: By default, read modifies each line read, by removing all leading and trailing white-space characters (spaces and tabs, if present in IFS, which is the default). | ||
+ | * To prevent this, the IFS variable is cleared. | ||
+ | * **line**: | ||
+ | * **-r**: | ||
+ | * Without this option, any unescaped backslashes in the input will be discarded. | ||
+ | * You should almost always use the **-r** option with read. | ||
+ | * **< " | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Checking that returned line is not empty ===== | ||
+ | |||
+ | <code bash> | ||
+ | #!/bin/bash | ||
+ | while IFS='' | ||
+ | echo "Text read from file: $line" | ||
+ | done < " | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | This is the opposite of **-z**, which checks if a string is null, i.e. it has zero length. | ||
+ | |||
+ | </ | ||
bash/files/read_a_file/basic_read.1611667251.txt.gz · Last modified: 2021/01/26 13:20 by peter