repo.or.cz
/
hband-tools.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bugfixes, features, documentation, examples, new tool
[hband-tools.git]
/
user-tools
/
straceall
blob
d789a5f8ae08ba8de8d84d997387706466feb4dc
1
#!/bin/bash
2
3
name
=
$1
4
shift
5
if
[
".
${name:0:1}
"
=
.
- ]
6
then
7
echo
"Usage: straceall <process name> [strace options]"
>&
2
8
exit
1
9
fi
10
exec
strace
"$@"
$
(
for
pid
in
$
(
pgrep
-x
"
$name
"
);
do
echo -p
$pid
;
done
)