From 85e16216d4f95a3986ce18d3e5a4a5ed431a4ad5 Mon Sep 17 00:00:00 2001 From: The Linux Kitten Date: Sun, 9 Mar 2014 21:22:02 +0100 Subject: Add support for -v option on OpenBSD The `-v` (verbose) flag for `cp`, `ln`, and `rm` is not standard. It is simple to implement using shell functions, so introduce `cp_v`, `ln_v`, and `rm_v`. These shell functions use the existing `$VERBOSE` variable for printing, which simplifies the code and reduces the number of variables. Fixes #61. --- bin/mkrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/mkrc') diff --git a/bin/mkrc b/bin/mkrc index d99cf36..3d9b749 100755 --- a/bin/mkrc +++ b/bin/mkrc @@ -82,7 +82,7 @@ for file in $files; do dest="$(destination "$DOTFILES_DIR" "$dotless" $in_host "$tag")" mkdir -p "$dest/$(dirname "$dotless")" $PRINT "Moving..." - $MV "$file" "$dest/$dotless" + mv_v "$file" "$dest/$dotless" $PRINT "Linking..." $INSTALL -d "$DOTFILES_DIR" -t "${tag:--}" "$dotless" done -- cgit v1.2.3