mirror of
https://github.com/NishiOwO/chimera.git
synced 2025-04-21 08:34:39 +00:00
12 lines
145 B
Bash
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
|