dotfiles/fish/.config/fish/functions/pst.fish

5 lines
147 B
Fish
Raw Normal View History

function pst --description 'Show process tree of a process'
2022-04-12 14:11:50 +02:00
set proc (ps -ef | fzf | awk '{print $2}' | head -1)
pstree -H $proc $proc
end