You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
## |
|
## flowscan-queue -- flowscan(1) queuing helper |
|
## |
|
|
|
for file in "$@"; do |
|
if [ ! -f $file ]; then |
|
echo "flowscan-queue: flow file \"$file\" not found" 1>&2 |
|
continue |
|
fi |
|
cp $file @l_prefix@/var/flowscan/queue/ |
|
done |
|
|
|
|
|
|