#!/bin/sh
cat ${WORKSPACE}/build/hudson/apps.txt | tr -d “\015” | while read name
do
if [ $name == “–EOF–” ]
then
break
fi
echo “Line: ” $name
done
Blog by Pál "voji" Vojácsek
#!/bin/sh
cat ${WORKSPACE}/build/hudson/apps.txt | tr -d “\015” | while read name
do
if [ $name == “–EOF–” ]
then
break
fi
echo “Line: ” $name
done