summaryrefslogtreecommitdiff
path: root/bin/mkrc
diff options
context:
space:
mode:
Diffstat (limited to 'bin/mkrc')
-rwxr-xr-xbin/mkrc20
1 files changed, 13 insertions, 7 deletions
diff --git a/bin/mkrc b/bin/mkrc
index d3effb8..d8ed478 100755
--- a/bin/mkrc
+++ b/bin/mkrc
@@ -35,15 +35,17 @@ tag=
verbosity=0
in_host=0
version=0
+always_copy=0
-while getopts Vvqot:d: opt; do
+while getopts CVvqot:d: opt; do
case "$opt" in
- t) tag=$OPTARG;;
- v) verbosity=$(($verbosity + 1));;
- q) verbosity=$(($verbosity - 1));;
- o) in_host=1;;
- d) DOTFILES_DIR=$OPTARG;;
- V) version=1
+ C) always_copy=1 ;;
+ t) tag=$OPTARG ;;
+ v) verbosity=$(($verbosity + 1)) ;;
+ q) verbosity=$(($verbosity - 1)) ;;
+ o) in_host=1 ;;
+ d) DOTFILES_DIR=$OPTARG ;;
+ V) version=1 ;;
esac
done
shift $(($OPTIND-1))
@@ -54,6 +56,10 @@ if [ $in_host -eq 1 -a "x$tag" != "x" ]; then
$ERROR 1 "Cannot specify both -o and -t"
fi
+if [ $always_copy -eq 1 ]; then
+ INSTALL="$INSTALL -C"
+fi
+
files=$@
for file in $files; do