I have a file which has the following data
!
multiply 4 and 5
multiply 5 and 6
!
add 3 to 4
add 8 to 4
!
sub 3 from 6
sub 9 from 5
!
!
div 6 by 2
div 8 by 1
I want to read only add commands from the file.
Using lookup plugin I was able to read the data of the entire file.
But I don't know how to read only the specific add commands from the file
Here's the code that I've written.
---
- name: Extracting the Add commands from the File
hosts: 127.0.0.1
connection: local
vars:
contents: "{{lookup('file', 'file1.txt')}}"
tasks:
- name: Printing the Add commands of the File
debug:
var: contents
I am stuck at this point.Could anyone help me out of how to read the specific part of a file in ansible.