501aa0eff8
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
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
|