Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pygmy(1) [debian man page]

PYGMY(1)						      General Commands Manual							  PYGMY(1)

NAME
pygmy - MPD client SYNOPSIS
pygmy bantu DESCRIPTION
This manual page documents briefly the pygmy and bantu commands. pygmy is a client for MPD, the Music Player Daemon. It opens a window and allows the user to control MPD and edit the current playlist. bantu opens the library browser dialog, which can be used to add files or directories to MPD's playlist. OPTIONS
None. AUTHOR
pygmy was written by Andrew Conkling <andrew.conkling@gmail.com>. This manual page was written by Decklin Foster <decklin@red-bean.com>, for the Debian project (but may be used by others). October 30, 2005 PYGMY(1)

Check Out this Related Man Page

Music Player Daemon(1)					      General Commands Manual					    Music Player Daemon(1)

NAME
MPD - A daemon for playing music SYNOPSIS
mpd [options] [CONF_FILE] DESCRIPTION
MPD is a daemon for playing music. Music is played through the configured audio output(s) (which are generally local, but can be remote). The daemon stores info about all available music, and this info can be easily searched and retrieved. Player control, info retrieval, and playlist management can all be managed remotely. MPD searches for a config file in ~/.mpdconf then /etc/mpd.conf or uses CONF_FILE. Read more about MPD at <http://www.musicpd.org/>. OPTIONS
--help Output a brief help message. --kill Kill the currently running mpd session. The pid_file parameter must be specified in the config file for this to work. --no-daemon Don't detach from console. --stderr Print messages stderr. --verbose Verbose logging. --version Print version information. FILES
~/.mpdconf User configuration file. /etc/mpd.conf Global configuration file. SEE ALSO
mpd.conf(5), mpc(1) BUGS
If you find a bug, please report it at <http://www.musicpd.org/mantis/bug_report_page.php>. AUTHORS
Warren Dukes <warren.dukes@gmail.com> Special thanks to all the people that provided feedback and patches. Music Player Daemon(1)
Man Page

3 More Discussions You Might Find Interesting

1. Programming

TCP connection check

Hi. I am writing client - server application using TCP sockets. I need some very basic functionality, namely: how to check if another "participant" of the connection is still present? I want to handle situations, when client is gone, or server breaks down, etc. (25 Replies)
Discussion started by: Shang
25 Replies

2. Shell Programming and Scripting

Delete duplicate lines... with a twist!

Hi, I'm sorry I'm no coder so I came here, counting on your free time and good will to beg for spoonfeeding some good code. I'll try to be quick and concise! Got file with 50k lines like this: "Heh, heh. Those darn ninjas. They're _____."*wacky The "canebrake", "timber" & "pygmy" are types... (7 Replies)
Discussion started by: shadowww
7 Replies

3. UNIX for Beginners Questions & Answers

Changing date format with script

I'm trying to change date format using this script from day/month/year to month/day/year #!/bin/bash while read line; do echo "$line" date=$(echo "$line" | cut -d/ -f1 ) month=$(echo "$line" | cut -d/ -f2 ) echo $month"/"$date"/2017" done < ~/Downloads/Dates.csv But I get output as... (5 Replies)
Discussion started by: sharat
5 Replies