chimera/util/playaudio.script
2025-03-12 01:30:36 +09:00

12 lines
145 B
Bash

#!/bin/sh
if [ -w /dev/audio ]
then
if [ -f "$1" ]
then
cat $1 > /dev/audio
fi
else
echo Your computer probably does not support sound
fi