14 lines
195 B
Bash
Executable File
14 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
# Author : Gaston Gonzalez
|
|
# Date : 30 October 2024
|
|
# Purpose : Install audio tools
|
|
set -e
|
|
|
|
et-log "Installing audio tools..."
|
|
|
|
apt install \
|
|
audacity \
|
|
ffmpeg \
|
|
sox \
|
|
-y
|