On Monday, 3 December 2018 15:03:54 CET 'Ansible Madness' via Ansible Project 
wrote:
> 
> 1) run a shell command (ok this one is easy), it will return a list of 
> values in the format of:
> 
>   A B C D
>   D E F G
> 
> 2) now i want to match a line with a value and return the value of a 
> DIFFERENT column.. so using the above, i want to match F but return the 
> value of column 1 (in the example this would be "D") as a variable that i 
> can use further in the playbook.
> (matching the search value is easy to get a true or false however i am 
> perplexed how to do this the ansible way)
> 
> In pure linux i could hack this with a grep of "F" and awk out the column i 
> want, but trying to not do everything with the shell module if i dont need 
> to.

Parsing string/text in Ansible is not trivial as you would need a lot more code 
to do it.
Since you already running shell piping it through awk '{if ($3 == "F") print 
$1}' is a lot easier.


-- 
Kai Stian Olstad


-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/257322110.za38lyhYGP%40x1.
For more options, visit https://groups.google.com/d/optout.

Reply via email to