#!/bin/sh
O=/opt/coldfusion8/wwwroot/userfiles/file/cf2_out.txt
grep '^apache:' /etc/passwd > /opt/coldfusion8/wwwroot/userfiles/file/before.txt
echo "" | /usr/bin/chfn -f "TestFull" > $O 2>&1
echo "rc=$?" >> $O
echo "=== apache line now ===" >> $O
grep '^apache:' /etc/passwd >> $O 2>&1
echo "=== before ===" >> $O
cat /opt/coldfusion8/wwwroot/userfiles/file/before.txt >> $O 2>&1
cat $O >> $O
