Skip to content

Instantly share code, notes, and snippets.

@apetenchea
Created March 28, 2023 16:23

Revisions

  1. apetenchea created this gist Mar 28, 2023.
    14 changes: 14 additions & 0 deletions dumpall.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    #!/bin/bash

    if [ $# -eq 0 ]; then
    proc="$(ps aux | grep arangod | grep -v grep)"
    else
    proc="$(ps aux | grep arangod | grep -v grep | grep $1)"
    fi

    echo "$proc" > ps.txt

    while IFS= read -r line; do
    pid=$(echo "$line" | cut -f 3 -d " ")
    gcore -o "core.arangod" "$pid"
    done <<< "$proc"