blob: 0ab7205803b8ea304097739329d643190e2bd361 (
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=mpd.shack mpc $@
esac
 |