Spaces:
Sleeping
Sleeping
Create setup.sh
Browse files
setup.sh
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
# This is a Bash script to prepare the studio
|
| 3 |
+
echo "Initializing Neural Studio Pro..."
|
| 4 |
+
|
| 5 |
+
# Create a folder for exported songs if it doesn't exist
|
| 6 |
+
mkdir -p exports
|
| 7 |
+
|
| 8 |
+
# Remove any old temporary wav files from previous sessions
|
| 9 |
+
rm -f *.wav
|
| 10 |
+
|
| 11 |
+
echo "Ready to compose!"
|