5 lines
132 B
Bash
Executable file
5 lines
132 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# docstring=searches the nix store with find
|
|
set -E -o pipefail
|
|
|
|
find /nix/store/ -maxdepth 1 -iname '*'"$@"'*'
|