Sha256: 9a2715e01d72ba2077927d3d6a8a9a5e8bce80415c9603a83bfd5ff3520ae978
Contents?: true
Size: 204 Bytes
Versions: 9
Compression:
Stored size: 204 Bytes
Contents
#!/bin/bash if [ $# == 0 ] || [ $# -gt 1 ]; then echo wrong number of arguments; exit 1; fi DIR=$1 LAST_CHAR=${DIR: -1} if [ $LAST_CHAR != "/" ]; then DIR=$DIR/; fi for f in $DIR* do sh $f; done
Version data entries
9 entries across 9 versions & 1 rubygems