Hi I have a script that contains this command of grep:
NOTE: $1 is a path e.g /tmp/some_rand_dir
grep -oPm1 "(?<=<string name=\"app_name\">)[^<]+" "$1/res/values/strings.xml"
and I can't understand what is it doing... Any help would be great :)
I tried to break it apart and trying to seperate the flags but I couldn't figure it out