.rcrc 112 B

123456789
  1. #!/usr/bin/rc
  2. path=($home/.bin $path)
  3. for (file in $home/.rc.d/*) {
  4. if (test -x $file) {
  5. . $file
  6. }
  7. }