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 | |
CLUSTERNAME=cluster-name | |
CLUSTER_API=cluster-api | |
NAMESPACE=namespace | |
USERNAME=username | |
ORGANIZATION=organization | |
KEY_FILE=$USERNAME.key | |
CSR_FILE=$USERNAME.csr | |
CRT_FILE=$USERNAME.crt |
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 | |
# Accepts a single argument, which is a path to the directory containing all the | |
# WAV files generated by a recordings from the X-Live card. | |
# Looks for files like 000000.WAV 000001.WAV 000002.WAV etc. | |
# | |
# Outputs files like Ch01.WAV Ch02.WAV Ch03.WAV etc. | |
# | |
# Requires sox |
OlderNewer