diff --git a/pad b/pad new file mode 100755 index 00000000..6be2dc56 --- /dev/null +++ b/pad @@ -0,0 +1,2 @@ +# Pad all lines of a text file to 80 characters plus newline +awk -F, '{printf("%80-s\n", $1)}' "$1" > "$2" \ No newline at end of file diff --git a/run b/run new file mode 100755 index 00000000..983ee5cb --- /dev/null +++ b/run @@ -0,0 +1,14 @@ +#!/bin/sh +# Run gradle build + +if [ "$1" = "ut" ]; then + ./gradlew test --tests com.neopragma.cobolcheck.*Test +elif [ "$1" = "it" ]; then + ./gradlew test --tests com.neopragma.cobolcheck.*IT +else + ./gradlew "$@" +fi + + + +