repo.or.cz
/
hband-tools.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add proper error handling for all final exec calls
[hband-tools.git]
/
user-tools
/
PMnslist
blob
fae43f8f855f8be3974c3c66ee6c595a870b7163
1
#!/bin/bash
2
3
true
<<EOF
4
=pod
5
6
=head1 NAME
7
8
PMnslist - Poor man's namespace list
9
10
=cut
11
12
EOF
13
14
find
/
proc
/
-regex
'.+/ns/.+'
-printf
'%l
\n
'
2
>/
dev
/
null |\
15
{
type
uq
>/
dev
/
null
2
>&
1
&&
uq ||
sort
-u
; }