This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------ | |
-- Config | |
------------------------------------ | |
-- MyDNS ID | |
mid="MyDNSID" | |
-- MyDNS Password | |
pwd="MyDNSPASSWD" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# first, we need to determine type of disk | |
# this can be achieved by trying first mount_cd9660 and checking error | |
# if it returns "Device not configured" - we need to wait, | |
# otherwise its not CD9660 fs and we can move to next | |
# | |
# try mounting UDF, if it returns "Invalid argument" - it's not an UDF | |
# | |
# the last remaining disc type is CD audio disc, that we must |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script to losslessly copy all the tracks on an audio CD to a folder | |
# named the same as the album. | |
# | |
# System Requirements: Mac OS X, cdrom drive, cdparanoia. | |
# | |
# Patrick Moffitt October 8, 2017. | |
# | |
CDPARANOIA=$(which cdparanoia) |