From 9711ab7a38780b23e0e392dd976886fe8136141b Mon Sep 17 00:00:00 2001 From: Thorsten Vitt Date: Fri, 16 Sep 2016 18:51:46 +0200 Subject: [PATCH] Allow `install -y` to skip the individual overwrite links --- install.sh | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/install.sh b/install.sh index 59c5200..bffc34f 100755 --- a/install.sh +++ b/install.sh @@ -4,6 +4,12 @@ source=`pwd` templates=~/.pandoc/templates latex=`kpsexpand '$TEXMFHOME/tex/latex/dwp'` bin=/usr/local/bin +if [ "$1" = "-y" ] +then + iarg="" +else + iarg="-i" +fi cat <