new-words

view INSTALL.sh @ 59:7a7a88277c08

experimental script oneliners.sh moved to misc/
author Igor Chubin <igor@chub.in>
date Thu Nov 03 16:10:58 2011 +0100 (2011-11-03)
parents 416394a87d9f
children
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 Please install PyStemmer "(press ctrl-d to continue but don't forget to install PyStemmer python module)".
12 read
13 echo Installing new-words to "$DEST"
14 set -e
15 cp en.sh "${DEST}"/en
16 cp grep-sentences.pl "${DEST}"/grep-sentences
17 cp learn-words.sh "${DEST}"/learn-words
18 cp new-words.py "${DEST}"/new-words
19 chmod +x ${DEST}/grep-sentences ${DEST}/learn-words ${DEST}/new-words ${DEST}/en
20 echo Done.