Created
March 20, 2017 12:32
-
-
Save Mnkai/133946f96ada83c3e240009086fe323c to your computer and use it in GitHub Desktop.
Script for transfering preconverted ATRAC3 files to NetMD
This file contains hidden or 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/zsh | |
for file in $PWD/*.(aa3) ; do | |
fullfilename=$(basename $file) | |
filename=${fullfilename%.*} | |
# linux-minidisc found here: https://wiki.physik.fu-berlin.de/linux-minidisc/doku.php | |
sudo ../netmdcli send "$fullfilename" "$filename" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment