File: setvocals_recursively.sh

package info (click to toggle)
performous 1.1%2Bgit20181118-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 11,752 kB
  • sloc: cpp: 30,014; ansic: 2,751; sh: 801; xml: 464; python: 374; makefile: 29
file content (8 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
#/bin/sh
# this script execute "./setvocals_one_song.sh" recursively
# usage ./setvocals_recursively.sh [parentdir]
# If you run it with no arguments, it will use the current dir as parent dir


[ $# -gt 0 ] || set -- .;
find "$@" -type d -exec sh ./setvocals.sh {} \;