1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 00:01:16 +00:00

Merge pull request #2027 from philsmd/patch-6

tab completion: allow using "install version" of hashcat
This commit is contained in:
Jens Steube 2019-05-17 14:10:58 +02:00 committed by GitHub
commit 15d1c75997
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,9 +17,17 @@ _hashcat_backend_devices ()
if [ ! -x "${executable}" ]; then
executable="${HASHCAT_ROOT}"/hashcat.bin
fi
if [ ! -x "${executable}" ]; then
local which_hashcat=$(which hashcat 2>/dev/null)
if [ -n "${which_hashcat}" ]; then
executable="${which_hashcat}"
fi
fi
if [ ! -x "${executable}" ]; then
return ""
return
fi
# remove separator at the end (if present)
@ -134,7 +142,7 @@ _hashcat_backend_devices ()
continue
fi
# we add it because we didn't find any conflict:
# we add it because we didn't find any conflicts:
if [ -z "${hashcat_device_list}" ]; then
hashcat_device_list="${device_str}"