dotfiles/fish/.config/fish/functions/psmem.fish

5 lines
133 B
Fish
Raw Normal View History

2021-12-13 10:44:16 +01:00
function psmem --description 'Show memory usage of a process'
2022-04-12 14:11:50 +02:00
set proc (ps -ef | fzf | awk '{print $2}')
ps_mem -p $proc
2021-12-13 10:44:16 +01:00
end