# type repeat ;echo "this is a bash shell output"
repeat is a function
repeat ()
{
local n i;
n="$1";
shift;
for ((i = 1; i <= "$n"; ++i))
do
echo Date starting `date`;
echo Before waiting `date`;
sleep 6;
echo Done waiting `date`;
/usr/bin/mpv /usr/share/sounds/freedesktop/stereo/complete.oga;
/usr/bin/mpv /usr/share/sounds/freedesktop/stereo/complete.oga;
/usr/bin/mpv /usr/share/sounds/freedesktop/stereo/complete.oga;
"$@";
done
}
我想为鱼壳中的别名重复添加此功能。这个别名已经在 bash shell 中可用,但我也想在 fish shell 中使用它。# 表示它的root用户。对于普通用户,它的 Fish shell 已设置为默认值。
好吧,这就是我想出的答案,并且有效。它使用 mpv 媒体播放器。让我知道是否可以进行任何进一步的更改。