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