Verknüpfung mit Prozessname anstelle von PID


4

Wie implementiere ich ein Wrapper-Skript? pstrace in der Bash, die die Schnittstelle von ändert

[sudo] strace -c -p [PID]

zu

[sudo] pstrace -c -p [PROCESS-NAME]

ähnlich wie

killall [PROCESS-NAME]

wird eingesetzt. Mit Vollendung und allem.

Antworten:


2

Dein dies:

ps auxw | grep [PROCESS-NAME] | awk '{print"-p " $2}' | xargs strace

1

Täuschend komplizierte Anforderungen :-)

In zwei Teilen zunächst die pstrace Wrapper-Skript für strace, das nutzt pgrep für den Name-zu-PID-Betrieb.

#!/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[@]}"

Für den zweiten Teil werde ich verwenden bash programmierbare Vervollständigung, um Prozesse nach Namen zu vervollständigen ~/.bash_profile oder ähnliches:

# 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

Getestet & amp; Wird unter Linux mit bash-3.x und bash-4.x verwendet. ps Optionen müssen möglicherweise auf Nicht-Linux-Plattformen optimiert werden, sollten auch unterstützt werden truss mit einem einzeiligen Wechsel.

Einschränkungen umfassen:

  • Kein korrektes Entkommen von Kernel-Thread-ähnlichen Prozessen [names]wird dies verursachen pgrep (wahrscheinlich) nicht tun, was du willst
  • Nicht übereinstimmende Prozesse mit Leerzeichen im Namen (" args "wird anstelle von" verwendet comm " damit /paths kann verwendet werden, sofern verfügbar)
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.