Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- echo -----------------
- echo ' TIME | TEMP '
- echo -----------------
- while read one two three four five six seven eight nine rest
- do
- if [[ $four == TIME* ]]
- then
- printf '%s | %s\n' "$six" "$nine"
- fi
- done < rst.out
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement