mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
6 lines
161 B
Fish
6 lines
161 B
Fish
#!/usr/bin/env fish
|
|
|
|
# Check unwanted data
|
|
# Show file name and line number
|
|
! grep -EHinr -e 'some' -e 'regexp' * || ( echo 'unwanted data found' >&2 && false )
|