From 122bbf0c6da226fc7e8a7e2a8d173b3e6259f7cf Mon Sep 17 00:00:00 2001 From: Mike Burns Date: Mon, 5 Aug 2013 04:41:38 +0200 Subject: Inclusionary patterns: -I The `-I` flag serves as an "undo" for the `-e` pattern. It overrides any matching exclusions, allowing for temporary listing/installation/removal. For example, if you want to try a `.pythonrc` but leave it in your `EXCLUDES` in rcrc(5), you can do: rcup -Ipythonrc pythonrc --- bin/rcdn | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'bin/rcdn') diff --git a/bin/rcdn b/bin/rcdn index 66e064f..a7fb81d 100755 --- a/bin/rcdn +++ b/bin/rcdn @@ -10,10 +10,12 @@ handle_command_line() { local dotfiles_dirs= local files= local excludes= + local includes= - while getopts Vqve:t:d: opt; do + while getopts VqvI:e:t:d: opt; do case "$opt" in e) excludes="$excludes $OPTARG";; + I) includes="$includes $OPTARG";; t) arg_tags="$arg_tags $OPTARG" ;; v) verbosity=$(($verbosity + 1));; q) verbosity=$(($verbosity - 1));; @@ -38,6 +40,9 @@ handle_command_line() { for exclude in $excludes; do LS_ARGS="$LS_ARGS -e $exclude" done + for include in $includes; do + LS_ARGS="$LS_ARGS -I $include" + done LS_ARGS="$LS_ARGS $files" $DEBUG "LS_ARGS: $LS_ARGS" -- cgit v1.2.3