Makes fuzzy the default
If no arguments are passed, it will open the fuzzy search From here you can search, create and delete
This commit is contained in:
parent
c4c3027e07
commit
f8260821ea
1 changed files with 6 additions and 1 deletions
7
kb
7
kb
|
@ -269,6 +269,7 @@ mainScript() {
|
|||
dogit=0
|
||||
fi
|
||||
fi
|
||||
|
||||
case "${args[0]}" in
|
||||
deepsearch) deepSearch "${args[@]:1}"; safeExit ;;
|
||||
del|delete) deleteFile "${args[@]:1}"; safeExit ;;
|
||||
|
@ -374,7 +375,7 @@ unset options
|
|||
|
||||
# Print help if no arguments were passed.
|
||||
# Uncomment to force arguments when invoking the script
|
||||
[[ $# -eq 0 ]] && set -- "--help"
|
||||
#[[ $# -eq 0 ]] && set -- "--help"
|
||||
|
||||
# Read the options and set stuff
|
||||
while [[ $1 = -?* ]]; do
|
||||
|
@ -401,6 +402,10 @@ done
|
|||
# Store the remaining part as arguments.
|
||||
args+=("$@")
|
||||
|
||||
# if no arguments or options are passed, assume fuzzy as default
|
||||
[ "${#args[@]}" -eq 0 ] && args+=("fuzzy")
|
||||
|
||||
|
||||
############## End Options and Usage ###################
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue