Skip to content

Instantly share code, notes, and snippets.

@imflop
Created November 12, 2012 05:47
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 imflop/4057704 to your computer and use it in GitHub Desktop.
Save imflop/4057704 to your computer and use it in GitHub Desktop.
Burn flac to cd
#!/bin/bash
read -p "This script writes all flac files in this directory to CD. Insert blank CD and press enter"
flac -d ./*.flac;
cdrecord -v -pad speed=1 dev=0,0,0 -dao -swab ./*.wav;
rm ./*.wav
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment