bash:files: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:files:parse_a_line_from_a_file [2021/01/26 16:36] – peter | bash:files:parse_a_line_from_a_file [2021/01/26 16:53] (current) – [Method 1] peter | ||
---|---|---|---|
Line 3: | Line 3: | ||
There are many ways of doing this, depending on your needs. | There are many ways of doing this, depending on your needs. | ||
- | + | ---- | |
- | * 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> | + | |
- | # | + | |
- | while IFS='' | + | |
- | echo "Text read from file: $line" | + | |
- | done < " | + | |
- | </ | + | |
+ | ===== Method 1 ===== | ||
- | ===== Another Method ===== | + | Example file: |
- | + | ||
- | Example file. | + | |
< | < | ||
Line 76: | Line 53: | ||
</ | </ | ||
+ | <WRAP info> | ||
+ | **NOTE: | ||
- | ===== Only get last temperature record ===== | + | Other options include: |
+ | * **-b file**: | ||
+ | * **-c file**: | ||
+ | * **-d file**: | ||
+ | * **-e file**: | ||
+ | * **-f file**: | ||
+ | * **-g file**: | ||
+ | * **-k file**: | ||
+ | * **-p file**: | ||
+ | * **-r file**: | ||
+ | * **-t file**: | ||
+ | * **-s file**: | ||
+ | * **-u file**: | ||
+ | * **-w file**: | ||
+ | * **-x file**: | ||
+ | |||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Only get last temperature record ===== | ||
< | < | ||
#!/bin/bash | #!/bin/bash | ||
- | fil=/home/heyu.log.ttyS0 | + | fil=/home/temp.log.ttyS0 |
if [ -f $fil ] | if [ -f $fil ] |
bash/files/parse_a_line_from_a_file.1611679010.txt.gz · Last modified: 2021/01/26 16:36 by peter