source: flacrip/trunk/flac2properties @ 14

Last change on this file since 14 was 14, checked in by peter, 10 years ago

added flac2properties, a shell script for looking up a release and recording that release's metadata in a *.properties file

  • Property svn:executable set to *
File size: 156 bytes
Line 
1#!/bin/bash
2
3FLAC=$1
4
5[ -e "$FLAC" ] || exit
6
7PROPERTIES=$(sed -e's/\.flac$/.properties/' <<< "$FLAC")
8#echo $PROPERTIES
9mbz --flac "$FLAC" > "$PROPERTIES"
Note: See TracBrowser for help on using the repository browser.