Skip to content

Instantly share code, notes, and snippets.

@dz0ny
Created January 5, 2011 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dz0ny/767151 to your computer and use it in GitHub Desktop.
Save dz0ny/767151 to your computer and use it in GitHub Desktop.
mpc
#!/bin/sh
#
# Copyright (c) 2010
# dz0ny
#
if [ -z "$@" ]; then
echo "Enter command!"
else
if [ $1 == "volume" ]; then
echo "setvol $2" | nc 127.0.0.1 6600
else
echo "$@" | nc 127.0.0.1 6600
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment