ambevar-dotfiles/.local/bin/gnac

14 lines
211 B
Plaintext
Raw Normal View History

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