6 lines
79 B
Bash
6 lines
79 B
Bash
#!/bin/sh
|
|
case "$1" in
|
|
"ack")
|
|
ack --version | grep "$PKG_VERSION"
|
|
;;
|
|
esac
|