のインターフェースを変更するラッパースクリプトpstrace
をbashに実装するにはどうすればよいですか。
[Sudo] strace -c -p [PID]
に
[Sudo] pstrace -c -p [PROCESS-NAME]
どのように似ています
killall [PROCESS-NAME]
使用されている。完成とすべてで。
あなたのこれ:
ps auxw | grep [PROCESS-NAME] | awk '{print"-p " $2}' | xargs strace
一見複雑な要件:-)
2つの部分で、最初はpstrace
のstrace
ラッパースクリプトです。これは、名前からPIDへの操作にpgrep
を使用します。
#!/bin/bash
IFS=$' \t\n'
# process the arguments to find "-p procname", only support one instance though
for ((nn=1; nn<=$#; nn++)); do
if [ "${!nn}" = "-p" ]; then
:
Elif [ "$prev" = "-p" ]; then
pname="${!nn}"
else
args+=( "${!nn}" ) # just copy
fi
prev="${!nn}"
done
pids=()
if [ -n "$pname" ]; then
# skip this Shell's PID, which pgrep -f will match
# note the use of exec to avoid picking up a matching subshell too
# uncomment && printf for pid/pname list
while read pp pname; do
[ "$pp" != "$$" ] && pids+=($pp) # && printf "%6i %s\n" "$pp" "$pname"
done < <(exec pgrep -l -f "${pname}")
fi
npids=${#pids[*]}
if [ $npids -eq 0 ]; then
echo "No PIDs to trace."; exit 2
Elif [ $npids -eq 1 ]; then
args=( "${args[@]}" -p ${pids[0]} )
Elif [ $npids -le 32 ]; then
read -p "$npids PIDS found, enter Y to proceed: " yy
[ "$yy" != "Y" ] && echo "Cancelled..." && exit 1
args=( "${args[@]}" ${pids[@]/#/-p } )
else
echo "Too many PIDs to trace: $npids (max 32)."; exit 2
fi
strace "${args[@]}"
2番目の部分では、bash
プログラム可能な完了を使用して、名前でプロセスを完了します。これを~/.bash_profile
または同様のものに入れます。
# process-name patterns to ignore
PROCIGNORE=( "^\[", "^-bash" )
_c8n_listprocs ()
{
local cur prv ignore IFS nn mm
prv=${COMP_WORDS[COMP_CWORD-1]}
cur=${COMP_WORDS[COMP_CWORD]}
case "$prv" in
'-p')
IFS=$'\n' COMPREPLY=( $(ps axwwo "args") ) IFS=$' \t\n'
COMPREPLY=(${COMPREPLY[*]// */}) # remove arguments
ignore="0" # ps header
for ((nn=1; nn<${#COMPREPLY[*]}; nn++)); do
# filter by (partially) typed name in cur
# use " =~ ^$cur " for prefix match, without ^ it's substr match
[[ -n "$cur" && ! "${COMPREPLY[$nn]}" =~ $cur ]] && {
ignore="$nn $ignore"
} || {
# skip names matching PROCIGNORE[]
for ((mm=0; mm<${#PROCIGNORE[*]}; mm++)); do
[[ "${COMPREPLY[$nn]}" =~ ${PROCIGNORE[$mm]} ]] &&
ignore="$nn $ignore"
done
}
done
# remove unwanted, in reverse index order
for nn in $ignore; do unset COMPREPLY[$nn]; done
;;
*) COMPREPLY=()
;;
esac
}
complete -F _c8n_listprocs pstrace
Linuxでbash-3.xおよびbash-4.xを使用してテストおよび使用されています。 ps
オプションは、Linux以外のプラットフォームでは微調整が必要な場合があり、1行の変更でtruss
もサポートする必要があります。
制限事項は次のとおりです。
[names]
のようなカーネルスレッドの正しいエスケープはありません。これにより、pgrep
は(おそらく)あなたが望むことをしなくなりますargs
」の代わりに「comm
」が使用されるため、可能な場合は/paths
を使用できます)