mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
759b9c06a7
While here: - Add LICENSE - Convert to options helpers - Fix location of default CDROM device on FreeBSD>=10 PR: 200140 Submitted by: Chris Hutchinson <portmaster@bsdforge.com> Approved by: maintainer timeout
8 lines
116 B
Bash
8 lines
116 B
Bash
#!/bin/sh
|
|
if [ -f /tmp/mp3 ] ; then
|
|
rm /tmp/mp3
|
|
fi
|
|
mkfifo /tmp/mp3
|
|
dagrab -v -n 64 -d $1 -f /tmp/mp3 $2 &
|
|
|