Sign in
akaros
/
upstream
/
9ce799f5a81541bbc7472b53696bc2a4390c83eb
/
.
/
kern
/
kfs
/
bin
/
ps
blob: c4cbfd5cfd154360696687604dfe6d9ebd67e558 [
file
] [
log
] [
blame
]
#!/bin/sh
PID
=
$$
for
i
in
\#proc
/*/
status
;
do
if
[
"$i"
==
"#proc/self/status"
]
||
\
[
"$i"
==
"#proc/$PID/status"
];
then
continue
fi
cat $i
echo
done