mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2025-05-24 19:14:39 +02:00
11 lines
295 B
Bash
Executable file
11 lines
295 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# arch
|
|
if [ "${BASH_VERSION}" ] && [ -r /usr/share/doc/pkgfile/command-not-found.bash ]; then
|
|
. /usr/share/doc/pkgfile/command-not-found.bash
|
|
fi
|
|
|
|
if [ "${ZSH_VERSION}" ] && [ -r /usr/share/doc/pkgfile/command-not-found.zsh ]; then
|
|
. /usr/share/doc/pkgfile/command-not-found.zsh
|
|
fi
|
|
|