2024-10-11 23:27:07 +03:00
|
|
|
{ ... }:
|
|
|
|
{
|
|
|
|
text = ''
|
|
|
|
# Find process and filter.
|
|
|
|
# Usage: fps [PROCESS]
|
|
|
|
function fps() {
|
|
|
|
local process="''${1}"
|
2024-04-06 03:03:58 +03:00
|
|
|
|
2024-10-11 23:27:07 +03:00
|
|
|
if [[ "''${process}" = "" ]]; then
|
|
|
|
ps aux
|
|
|
|
else
|
|
|
|
ps aux | sed -n -e "1p" -e "/''${process}/Ip" | sed -e "/sed -n -e 1p -e/d"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
'';
|
2024-04-06 03:03:58 +03:00
|
|
|
}
|