Skip to content

Instantly share code, notes, and snippets.

View hultberg's full-sized avatar

Edvin Børresen Hultberg hultberg

View GitHub Profile
@hultberg
hultberg / convert.sh
Created May 14, 2017 13:44
Convert .ogg to .mp3
#!/usr/bin/env bash
# Convert all .ogg files in current folder to mp3, and move the original .ogg file into own folder named "ogg".
# Stop on error (-e).
# Debug each command (-x).
set -ex
# Make sure there is a ogg folder available.
if [[ ! -d "ogg" ]]; then
mkdir ogg