First import.
This commit is contained in:
commit
c6832dfebe
4 changed files with 184 additions and 0 deletions
30
xmmslist.sh
Executable file
30
xmmslist.sh
Executable file
|
@ -0,0 +1,30 @@
|
|||
#!/bin/sh
|
||||
|
||||
#
|
||||
# xmmslist.sh
|
||||
#
|
||||
# Transfers the xmmslist playlist to a Web server. See the README file for
|
||||
# more information.
|
||||
#
|
||||
# Copyright (C) 2003 Erik C. Thauvin. All rights reserved.
|
||||
#
|
||||
# This software is provided "as is" without express or implied warranties.
|
||||
#
|
||||
# Permission is granted to use, copy, modify and distribute this software,
|
||||
# provided this disclaimer and copyright are preserved on all copies. This
|
||||
# software may not, however, be sold or distributed for profit, or included
|
||||
# with other software which is sold or distributed for profit, without the
|
||||
# permission of the author.
|
||||
#
|
||||
# $Id$
|
||||
|
||||
# The receiving host name
|
||||
RHOST="nix.thauvin.net"
|
||||
|
||||
# The receiving host location
|
||||
RLOC="/var/www/html/erik/tunez/"
|
||||
|
||||
if test -n "`ps -cx|grep xmms$`"; then
|
||||
# ncftpput -u user -p password ${RHOST} ${RLOC} ${HOME}/bin/playlist.txt
|
||||
scp -q ${HOME}/bin/playlist.txt ${RHOST}:${RLOC}
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue