An open API service indexing awesome lists of open source software.

https://github.com/andy671/handfulscripts

Handful scripts that do common tasks.
https://github.com/andy671/handfulscripts

Last synced: about 1 year ago
JSON representation

Handful scripts that do common tasks.

Awesome Lists containing this project

README

          

# HandfulScripts
Handful scripts that do common tasks.

## Common Usages:
```
# Converts all wav files in the folder to mp3 files.
bash wav_folder_to_mp3.sh folder_name

# Converts all wav files in the folder to mp3 files. Removes all converted wav files.
bash wav_folder_to_mp3_force.sh folder_name

# Converts all wav files in the inner folders to mp3 files.
bash wav_folder_inner_to_mp3.sh folder_name

# Converts all wav files in the inner folders to mp3 files. Removes all converted wav files.
bash wav_folder_inner_to_mp3_force.sh folder_name

# Converts all mp3 files in the inner folders to ogg files.
bash mp3_folder_to_ogg.sh folder_name
```