9 lines
118 B
Bash
Executable File
9 lines
118 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if grep -lE '[^'`printf '\r'`']$' $(ack -l "`printf '\r'`\$" ${@:-.}); then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|
|
|