xcat-core/xCAT-client-2.0/usr/sbin/tabedit
jbjohnso c99d72a179 Initial xCAT 2.0 import
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
2007-10-26 22:44:33 +00:00

43 lines
952 B
Bash
Executable File

#!/bin/bash
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
function cexit {
if [ -d /tmp/tabedit.$$ ]; then
rm -rf /tmp/tabedit.$$;
fi
exit
}
trap cexit 2 15
TABLE=$1
if [ -z "$EDITOR" ]; then
echo "Define EDITOR environment variable before running this command"
exit 1
fi
if [ -z "$TABLE" ]; then
echo "Usage: tabedit <tablename>";
exit 1
fi
mkdir -p /tmp/tabedit.$$/
xcatclientnnr tabdump $1 > /tmp/tabedit.$$/$1.csv
#use md5sum to check if it actually changes..
SUM=`md5sum /tmp/tabedit.$$/$1.csv`
EXIT=0
while [ $EXIT -eq 0 ]; do
cd /tmp/tabedit.$$
"$EDITOR" $1.csv
cd -
NEWSUM=`md5sum /tmp/tabedit.$$/$1.csv`
if [ "$NEWSUM" == "$SUM" ]; then
echo "No file modifications detected, not restoring."
break;
fi
if `dirname $0`/tabrestore /tmp/tabedit.$$/$1.csv; then
break;
else
echo "Above errors occured, hit enter to edit, or ctrl-c to abort"
read JNK
fi
done
cexit