ns-tools

Namespace utilities to reuse Open Source packaging efforts.
git clone git://r-36.net/ns-tools
Log | Files | Refs | README | LICENSE

ns-unprepare-all (78B)


      1 #!/bin/sh
      2 
      3 for ns in $(ls -1 /ns);
      4 do
      5 	ns-unprepare -f $(ns-root "$ns")
      6 done
      7