blob: 6626532bb4b10f6cf4386b6657b27681a2366537 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
case "$1" in
(--help)
case "$2" in
(--verbose) mpc --help ;;
(*) echo access mpd
esac ;;
(*)
##echo test-module called with following arguments: "$@"
## send command for re-evaluation:
##echo /espeak test >$NOISE_linefeed
mpc $@
esac
|