7 lines
67 B
Bash
7 lines
67 B
Bash
#!/bin/bash
|
|
|
|
if !(grep $1 /tmp/foo/diff.txt); then
|
|
\rm -f $1
|
|
fi
|
|
|