blob: 7d37ca5c80cfde336b2cee4a8290799aa8810af8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# log
# Stream logs from the application.
application_name="$(
/usr/libexec/PlistBuddy \
-c 'Print :CFBundleName' \
Info.plist
)"
log stream --predicate "process == '${application_name}'"
|