From 22b4bd5555fb8c56aa3137c19ec24704ddc3f64f Mon Sep 17 00:00:00 2001 From: Mike Burns Date: Fri, 2 Aug 2013 17:37:41 -0400 Subject: Add rcdn This program will remove all your rc files that are symlinked. This can be further controlled by `-d` and `-t`. For example, you can feel comfortable trying new rc files because you can quickly remove them again with `-d`. rcup -d thoughtbot-dotfiles rcdn -d thoughtbot-dotfiles Likewise, when you're done with Python just drop it: rcdn -t python --- share/rcm.sh.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'share/rcm.sh.in') diff --git a/share/rcm.sh.in b/share/rcm.sh.in index 3b8b87b..f25665b 100644 --- a/share/rcm.sh.in +++ b/share/rcm.sh.in @@ -51,18 +51,21 @@ handle_common_flags() { VERBOSE=echo PRINT=echo MV="$MV -v" + RM="$RM -v" INSTALL="$INSTALL -vv" elif [ $verbosity -eq 1 ]; then DEBUG=: VERBOSE=echo PRINT=echo MV="$MV -v" + RM="$RM -v" INSTALL="$INSTALL -v" elif [ $verbosity -eq 0 ]; then DEBUG=: VERBOSE=: PRINT=echo MV="$MV -v" + RM="$RM -v" else DEBUG=: VERBOSE=: -- cgit v1.2.3