8 lines
124 B
Bash
Executable File
8 lines
124 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
ipodfileindir=$1
|
|
|
|
mp3dir=$(dirname "$ipodfileindir")
|
|
find "$mp3dir" -name "*.mp3" -exec create_links.sh {} \;
|