Quellcode durchsuchen

Don't do anything when xcp() is run without arguments

Alois Mahdal vor 8 Monaten
Ursprung
Commit
42b21c1585
1 geänderte Dateien mit 1 neuen und 0 gelöschten Zeilen
  1. 1
    0
      dotfiles/config/bashum/main.bashrc

+ 1
- 0
dotfiles/config/bashum/main.bashrc Datei anzeigen

633
     # Copy paths of $@ to clipboard
633
     # Copy paths of $@ to clipboard
634
     #
634
     #
635
     local path
635
     local path
636
+    test $# -gt 0 || return 0
636
     find "$@" -maxdepth 0 -mindepth 0 \
637
     find "$@" -maxdepth 0 -mindepth 0 \
637
       | while read -r path; do
638
       | while read -r path; do
638
             readlink -e "$path"
639
             readlink -e "$path"