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