bash:parse_a_line_from_a_file
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:parse_a_line_from_a_file [2019/12/07 01:42] – created peter | bash:parse_a_line_from_a_file [2021/01/26 16:34] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== BASH - Parse a line from a file ====== | ||
- | |||
- | There are many ways of doing this, depending on your needs. | ||
- | |||
- | * Simply print all lines containing the keyword test: | ||
- | | ||
- | <code bash> | ||
- | |||
- | * The same but for many keywords. | ||
- | | ||
- | <code bash> | ||
- | |||
- | * Process a file line by line, exit if the line is found: | ||
- | | ||
- | <code bash> | ||
- | | ||
- | * Exit with status 1 if the line matches. | ||
- | | ||
- | <code perl> | ||
- | |||
- | * Though you can't set an exit value, you can still do something similar with bash. The exit value of the last command run is always saved as $? in bash, that means you can test the value of $? and act accordingly: | ||
- | | ||
- | <code bash> | ||
- | while read line; do let c++; echo $line | grep test >/ | ||
- | if [[ $? == 0 ]] ; then echo Match for line $c : $line; | ||
- | else echo No match for line $c; fi | ||
- | done < file.txt | ||
- | </ | ||
- | | ||
- | |||
- | ===== Another approach to process a file line by line: ===== | ||
- | |||
- | <code bash> | ||
- | #!/bin/bash | ||
- | while IFS='' | ||
- | echo "Text read from file: $line" | ||
- | done < " | ||
- | </ | ||
- | |||
- | |||
- | ===== Another Method ===== | ||
- | |||
- | Example file. | ||
- | |||
- | < | ||
- | 07/17 21:04:01 sndc addr unit 1 : hu P1 (TempLinc) | ||
- | 07/17 21:04:02 sndc func StatusReq : hc P | ||
- | 07/17 21:04:04 rcvi addr unit 15 : hu P15 (TempAck_5) | ||
- | 07/17 21:04:04 rcvi func Preset : level 11 | ||
- | 07/17 21:04:04 Temperature = 78 : hu P0 (office_temp) | ||
- | 07/17 21:19:01 sndc addr unit 1 : hu P1 (TempLinc) | ||
- | 07/17 21:19:02 sndc func StatusReq : hc P | ||
- | 07/17 21:19:05 rcvi addr unit 15 : hu P15 (TempAck_5) | ||
- | 07/17 21:19:05 rcvi func Preset : level 11 | ||
- | 07/17 21:19:05 Temperature = 78 : hu P0 (office_temp) | ||
- | </ | ||
- | |||
- | |||
- | < | ||
- | #!/bin/bash | ||
- | |||
- | fil=/ | ||
- | |||
- | # Test for existence of the test file | ||
- | if [ -f $fil ] | ||
- | then | ||
- | |||
- | # Read through the file looking for the word Temperature = | ||
- | |||
- | while read line | ||
- | do | ||
- | echo $line | grep -q Temperature | ||
- | if [ $? == 0 ]; then | ||
- | mytemp=`echo $line | cut -d = -f2 | cut -d : -f1` | ||
- | echo " | ||
- | fi | ||
- | done < $fil | ||
- | |||
- | fi | ||
- | </ | ||
- | |||
- | |||
- | Returns: | ||
- | |||
- | < | ||
- | Current temperature is: 78 | ||
- | Current temperature is: 78 | ||
- | </ | ||
- | |||
- | |||
- | ===== Only get last temperature record ===== | ||
- | |||
- | |||
- | < | ||
- | #!/bin/bash | ||
- | fil=/ | ||
- | |||
- | if [ -f $fil ] | ||
- | then | ||
- | |||
- | mytemp=`grep Temperature $fil | tail -1 | cut -d = -f2 | cut -d : -f1` | ||
- | echo " | ||
- | |||
- | fi | ||
- | </ | ||
- | |||
- | |||
bash/parse_a_line_from_a_file.1575682925.txt.gz · Last modified: 2020/07/15 09:30 (external edit)