hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

moddirs (148B)


      1 #!/bin/sh
      2 for i in *; do
      3 	case "$i" in
      4 	.* | cmd | configs | contrib | docs | makefiles | scripts) ;;
      5 	*) find -- "$i" -prune -type d ;;
      6 	esac
      7 done