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.
- Host: GitHub
- URL: https://github.com/andy671/handfulscripts
- Owner: Andy671
- Created: 2019-06-08T09:50:14.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-14T17:46:16.000Z (almost 4 years ago)
- Last Synced: 2025-03-20T08:45:13.686Z (about 1 year ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```