ambevar-dotfiles/.scripts/gnac

14 lines
232 B
Plaintext
Raw Normal View History

2014-03-05 15:59:15 +01:00
#!/bin/sh
2014-03-10 11:07:51 +01:00
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
2014-03-05 15:59:15 +01:00
cat <<EOF
Usage: ${0##*/} [FILES]
Grep non-ascii characters. If no files are provided, use stdin.
EOF
exit
fi
perl -ne 'chomp; print $_, "\n" if /[[:^ascii:]]/'