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/bash | |
for filename in STE*.wav; do | |
echo "Remixing $filename..." | |
sox "$filename" "remixed_$filename" remix 1 1 | |
done | |
echo "Done!" |
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
git branch -m master main | |
git push origin main | |
echo "In Github: Navigate to your repository settings/branches." | |
echo "If your branch has been added you'll be able to switch your default from master to main." | |
echo "------------------------------------" | |
echo "In Gitlab: Navigate to your project settings/branches." | |
echo "Then change your default to main." | |
echo "If your master is protected remove it and replace with main." | |
echo "------------------------------------" | |
echo "Make any changes relevant to deployment!" |