cut + grep + awk + sed in action; prerequisite: Git repository:
git status -s | \ cut -c4- | \ grep "$test_type.*[Test|Spec]" | \ awk 'BEGIN { FS = "/" } ; { print ($(NF)) }' | \ sed 's/\.groovy//' | tr '\n' ' '
cut + grep + awk + sed in action; prerequisite: Git repository:
git status -s | \ cut -c4- | \ grep "$test_type.*[Test|Spec]" | \ awk 'BEGIN { FS = "/" } ; { print ($(NF)) }' | \ sed 's/\.groovy//' | tr '\n' ' '