Hi,
I would like to filter amulecmd result after a search. I didn't find a way to do it with the "search" of amulecmd therefore I'm trying to do it with a script :
echo Results > tmp
amulecmd -c results | grep "my key work for filter" | awk -F '.' '{print "download " $1}' >> tmp
cat tmp | amulecmd
My problem is that the result name returned by "amulecmd -c results" is limited to 77 char. Which is not enough.
Is there a way to change this "77" value? Or an other way to implement filters?
Thanks