new-words

view INSTALL.sh @ 40:c3a50c0d2400

Functions for adding/removing notes + statistics now implemented in Python.

Option -O (old-style) is not supported anymore. If you need old-style new-words use new-words.sh
author Igor Chubin <igor@chub.in>
date Sun Jan 23 17:09:44 2011 +0100 (2011-01-23)
parents 0ff259b8b6a3
children 04b0280aa883
line source
1 #!/bin/sh
3 if [ "$UID" = 0 ]
4 then
5 DEST=/usr/local/bin/
6 else
7 DEST=~/bin/
8 mkdir -p ~/bin/
9 fi
11 echo Installing new-words to "$DEST"
12 set -e
13 cp en.sh "${DEST}"/en
14 cp grep-sentences.pl "${DEST}"/grep-sentences
15 cp learn-words.sh "${DEST}"/learn-words
16 cp new-words.sh "${DEST}"/new-words
17 chmod +x ${DEST}/grep-sentences ${DEST}/learn-words ${DEST}/new-words ${DEST}/en
18 echo Done.