8 lines
91 B
Bash
Executable file
8 lines
91 B
Bash
Executable file
#!/bin/sh
|
|
|
|
NUM=`cat COUNT`
|
|
NUM=$(($NUM+1))
|
|
|
|
ln -s "$1" audio_${NUM}.wav
|
|
|
|
echo $NUM > COUNT
|