User Tools

Site Tools


bash:parse_a_line_from_a_file

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:parse_a_line_from_a_file [2016/07/02 00:59] peterbash: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 ====== 
  
-Example File: 
- 
-<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) 
-</file> 
- 
- 
-<code> 
-#!/bin/bash 
- 
-fil=/home/test.log 
- 
-# 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 "Current temperature is: $mytemp" 
-    fi 
-  done < $fil 
- 
-fi 
-</code> 
- 
- 
-Returns: 
- 
-<code> 
-Current temperature is:  78  
-Current temperature is:  78 
-</code> 
- 
- 
-===== Only get last temperature record ===== 
- 
- 
-<code> 
-#!/bin/bash 
-fil=/home/heyu.log.ttyS0 
- 
-if [ -f $fil ] 
-then 
- 
-mytemp=`grep Temperature $fil | tail -1 | cut -d = -f2 | cut -d : -f1` 
-echo "Current temperature is: $mytemp" 
- 
-fi 
-</code> 
bash/parse_a_line_from_a_file.1467421162.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki