#!/bin/bash

# 2010-02-17  Jud Bishop
# This script changes all of the printer configuration channels
# from AIX specific qprt to Linux specific lp commands.

for I in `ls -1`
do
	sed 's/lp -d/lp -d/g' $I > tmp
	if [ $? -eq 0 ]
	then
		mv -f tmp $I
	else
		echo $I "did not complete"
		exit
	fi
done



