3 lines
101 B
Bash
3 lines
101 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
test -e $1 && test -f $1 && grep flykhan $1 -n || echo "file not exist or not a file"
|