blob: bade74592c98ffbccf8c81306e272f9edf183419 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
exec >$HOME/xerrors 2>&1
# test: dies a simple X11 program start?
#exec xvt -geometry +1+1 -display $DISPLAY
# start plasma under strace and collect trace files in /tmp
/usr/bin/rm -rf /tmp/trace.*
exec /usr/bin/strace -ff -o /tmp/trace.txt -e trace=file \
-e trace=file \
--no-abbrev -e abbrev=!execve -s 2000 \
startplasma-x11
#exec startplasma-x11
|