summaryrefslogtreecommitdiff
path: root/bin/rcdn
diff options
context:
space:
mode:
authorGravatar The Linux Kitten <kitten@openbsdbox>2014-03-09 21:22:02 +0100
committerGravatar Mike Burns <mike@mike-burns.com>2014-03-19 13:24:00 +0100
commit85e16216d4f95a3986ce18d3e5a4a5ed431a4ad5 (patch)
treeb6589a397729daaeeb7be4c1dbc347ccf18d384d /bin/rcdn
parent937e565856a05a32060a43d2ee695443cf6c6af1 (diff)
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.
Diffstat (limited to 'bin/rcdn')
-rwxr-xr-xbin/rcdn2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rcdn b/bin/rcdn
index 3550a30..2caa340 100755
--- a/bin/rcdn
+++ b/bin/rcdn
@@ -11,7 +11,7 @@ remove_link() {
if [ "x$dest" = "x/" ]; then
$VERBOSE "not a symlink, skipping: $original"
elif [ -L "$dest" -o "x$sigil" = "xX" ]; then
- $RM -rf "$dest"
+ rm_v -rf "$dest"
rmdir -p "$(dirname "$original")" 2>/dev/null
else
remove_link "$(dirname "$dest")" "$original"