Easy command for find iOS Application directory on Jailed Device

Unlike Android, iOS has a random pattern of directory names for each app. This is a little annoying when analyzing it.

but you can simply check it out by using the commands below. (Create for Memo)

find . -maxdepth 3 | grep <Search App Name>

With the -type option, you can search in fast.

find . -type f -maxdepth 3 | grep <Search App Name>
find . -type d -maxdepth 3 | grep <Search App Name>

e.g

find . -maxdepth 3 | grep YouTube