4 lines
102 B
Bash
Executable file
4 lines
102 B
Bash
Executable file
#!/bin/sh
|
|
cmd=${0##*/}
|
|
echo "$cmd: warning: $cmd is obsolescent; using grep -F" >&2
|
|
exec grep -F "$@"
|