aboutsummaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh')
-rw-r--r--sh/eci.sh40
-rw-r--r--sh/titi (renamed from sh/tata)0
2 files changed, 20 insertions, 20 deletions
diff --git a/sh/eci.sh b/sh/eci.sh
index 9560d62..49a55d7 100644
--- a/sh/eci.sh
+++ b/sh/eci.sh
@@ -1,53 +1,53 @@
#!/bin/bash
-PROJECT_PATH="$HOME/dev/espik"
+PROJECT_PATH="${HOME}/dev/espik"
-TMPFILE="/tmp/.eci-$RANDOM"
+TMPFILE="/tmp/.eci-${RANDOM}"
-if [ ! -e $PROJECT_PATH ]; then
- echo "PROJECT_PATH defined ($PROJECT_PATH) doesn't exist"
+if [ ! -e ${PROJECT_PATH} ]; then
+ echo "PROJECT_PATH defined (${PROJECT_PATH}) doesn't exist"
exit -1
fi
-if [ -z "$EDITOR" ]; then
+if [ -z "${EDITOR}" ]; then
echo "EDITOR is not set"
exit -1
-elif [ ! -e $(which $EDITOR) ]; then
+elif [ ! -e $(which ${EDITOR}) ]; then
echo "EDITOR doesn't exist"
exit -1
fi
-touch $TMPFILE
-if [ ! -e $TMPFILE ]; then
+touch ${TMPFILE}
+if [ ! -e ${TMPFILE} ]; then
echo "Cannot write to /tmp"
echo "Check perms ;)"
exit -1
fi
-chmod 600 $TMPFILE
+chmod 600 ${TMPFILE}
-cd $PROJECT_PATH
+cd ${PROJECT_PATH}
echo "
--This line and thoses under will be ignored--
$(svn st)
-$(svn diff)" >> $TMPFILE
+$(svn diff)" >> ${TMPFILE}
-SUM_ORI=$(cksum $TMPFILE | awk '{print $1}')
+SUM_ORI=$(cksum ${TMPFILE} | awk '{print $1}')
-$EDITOR $TMPFILE
+${EDITOR} ${TMPFILE}
-SUM_NEW=$(cksum $TMPFILE | awk '{print $1}')
+SUM_NEW=$(cksum ${TMPFILE} | awk '{print $1}')
if [ "${SUM_ORI}" = "${SUM_NEW}" ]; then
echo "Enter something !"
- rm -f $TMPFILE
+ rm -f ${TMPFILE}
exit -1
fi
-DELCOMMENTFROM=$(grep -n -- '--This line and thoses under will be ignored--' $TMPFILE | head -n 1 | cut -d ':' -f 1)
-head -n $(($DELCOMMENTFROM-1)) $TMPFILE > ${TMPFILE}.send
+DELCOMMENTFROM=$(grep -n -- '--This line and thoses under will be ignored--' ${TMPFILE} | head -n 1 | cut -d ':' -f 1)
+head -n $(($DELCOMMENTFROM-1)) ${TMPFILE} > ${TMPFILE}.send
SVN_ST=$(svn st | grep -v '^?')
ADDED_FILES=$(echo ${SVN_ST} | grep '^A' | awk '{print "+"$2}' | tr -d '\n')
@@ -55,12 +55,12 @@ MODIFIED_FILES=$(echo ${SVN_ST} | grep '^M' | awk '{print " "$2}' | tr -d '\n')
DELETED_FILES=$(echo ${SVN_ST} | grep '^D' | awk '{print "-"$2}' | tr -d '\n')
echo -e "$(date "+%d/%m/%y %X") - from $(whoami)@$(if [ `uname -o` = "Cygwin" ]; then hostname; else hostname -f; fi)
-\t${ADDED_FILES} ${MODIFIED_FILES} ${DELETED_FILES}
+\t$(for i in ${ADDED_FILES} ${MODIFIED_FILES} ${DELETED_FILES}; do echo -n $i; done && echo)
$(cat ${TMPFILE}.send | sed -r 's/(.*)/\t* \1/g')
-$(cat $PROJECT_PATH/ChangeLog)" > $PROJECT_PATH/ChangeLog
+$(cat ${PROJECT_PATH}/ChangeLog)" > ${PROJECT_PATH}/ChangeLog
svn ci -m "$(cat ${TMPFILE}.send)"
-rm -f $TMPFILE ${TMPFILE}.send
+rm -f ${TMPFILE} ${TMPFILE}.send
diff --git a/sh/tata b/sh/titi
index e69de29..e69de29 100644
--- a/sh/tata
+++ b/sh/titi