Find some text in adobe after effects binary file
7. 10. 2024example 1 ↓
strings -a -e b marilyn.aep | grep -i mar
# or interactive fuzzy finder:
strings -a -e b marilyn.aep | fzf
may return
maraRGB-kameraprofilRGB-Profil f
maraRGB-kameraprofilRGB-Profil f
MARILYN
example 2 ↓
strings -a -e b marilyn.aep | grep DIN | sort | uniq
may return
DINOffcPro
DINOffcPro-Medi
DINPro-Light
DINPro-Medium
DINPro-Regular
Explanation of the command line: ↓
strings
-a or --all
-e b = encoding type is 16bit Unicode
The rest should be clear from examples.
Note: This will not find or display any multibyte chararacter correctly for unknown reasons.