blob: 20abf19b9a944b0037e19dc79e34853e4e16d7ca (
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
    MPD_HOST=filebitch.shack mpc $@
esac
 |