My music library. see library.tsv and any folder for playlists. synced from spotify via ugly autohotkey scripts
1#!/usr/bin/env bash
2DELIMITER=:
3artist=$(echo $@ | awk -F"$DELIMITER" '{print $1}' | sed 's/^\s*\|\s*$//g')
4title=$(echo $@ | awk -F"$DELIMITER" '{print $2}' | sed 's/^\s*\|\s*$//g')
5echo Saving $artist — $title to library...
6echo -e "$artist\t$title" >> $HOME/music/library.tsv
7$HOME/music/backup