#!/bin/sh
#CCCP script by hampa@chello.se
#usage (you need to pipe to this script):
#./cccp -s "*my search querey*1" | ./dlsearchresult

while read -r line
do
echo $line | awk -F\| '{printf("\"*%s**%s*\"\n", $1, $2)}' | xargs -n1 -exec cccp -O -d
done 
