13 lines
133 B
Bash
Executable file
13 lines
133 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
fill=$1
|
|
shift
|
|
|
|
while (( "$(expr $#)" ))
|
|
do
|
|
grep -v ${fill} $1 > tempdatei
|
|
mv tempdatei $1
|
|
shift
|
|
done
|