Sign in
akaros
/
upstream
/
ebfda71f57db6563be0e153c27858bd5f9a6335c
/
.
/
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