美文网首页
Shell脚本弹奏中文版“生日快乐歌”

Shell脚本弹奏中文版“生日快乐歌”

作者: 网路元素 | 来源:发表于2019-10-01 09:14 被阅读0次

在《Shell命令控制蜂鸣器发声》一文中,我们了解到了如何在Ubuntu下安装beep命令来控制PC主板上蜂鸣器发声,这次我们想让蜂鸣器弹奏出中文版的“生日快乐歌”,首先还是要用sudo modprobe pcspkr命令加载驱动,然后在Shell脚本所在目录下执行bash -e beep_birthday_song.sh命令,这样就可以执行我们写的脚本弹奏了,我们的脚本名字为beep_birthday_song.sh,内容如下:

#!/bin/sh

freq=(392 392 440 392 523 494 392 392 440 392 587 523 392 392 784 659 523 494 440 698 698 659 523 587 523)
delay=(375 125 500 500 500 1000 375 125 500 500 500 1000 375 125 500 500 500 500 1000 375 125 500 500 500 1000)

i=0

len=${#freq[*]}

while [ $i -lt $len ]
do
        beep -f ${freq[$i]} -l ${delay[$i]}
        let ++i
done

参考网址: 

http://jpuyy.com/2012/11/linux-beep.html
http://stackoverflow.com/questions/12919378/solvedplaying-beep-in-c-linux
http://kirrus.co.uk/2010/09/linux-beep-music/
http://snipplr.com/view/62662/jingle-bells-song/
http://wiki.mikrotik.com/wiki/Super_Mario_Theme
http://frank-buss.de/beep/index.html
http://stackoverflow.com/questions/7247279/bash-set-e-and-i-0let-i-do-not-agree
http://zhenshi4597.blog.51cto.com/1891465/871166
http://blog.csdn.net/yy_done/article/details/7242309
http://www.coder4.com/archives/3853

相关文章

  • Shell脚本弹奏中文版“生日快乐歌”

    在《Shell命令控制蜂鸣器发声》一文中,我们了解到了如何在Ubuntu下安装beep命令来控制PC主板上蜂鸣器发...

  • Shell入门笔记

    Shell脚本:Linux Shell脚本学习指南菜鸟教程 - Shell教程Linux入门 - Shell脚本是...

  • 2018-09-26

    shell脚本 1.1、什么是shell脚本(shell script , ...

  • Shell script + crontab实现Mysql定时备

    一、Shell 脚本 Shell 脚本(shell script),是一种为 shell 编写的脚本程序。 业界所...

  • 嵌入式day12

    shell脚本的本质 shell脚本语言是解释型语言 shell脚本的本质:shell命令的有序集合 shell编...

  • shell脚本

    什么是shell脚本 Shell 脚本(shell script),是一种为 shell 编写的脚本程序。业界所说...

  • Shell脚本语法

    1. Shell脚本简介Shell 脚本(shell script),是一种为 shell 编写的脚本程序。业界所...

  • shell脚本

    什么是Shell脚本 Shell脚本(英语:Shell script),又称Shell命令稿、程序化脚本,是一种电...

  • 【生物信息笔记】shell 脚本 (dry-2)

    shell 和 shell script(脚本)区别: shell 和 shell 脚本是两个不同概念,shell...

  • chapter 11. 构建基本脚本

    创建shell脚本 shell脚本第一行为指定具体shell来运行该脚本,可以指定shell(待验证) echo ...

网友评论

      本文标题:Shell脚本弹奏中文版“生日快乐歌”

      本文链接:https://www.haomeiwen.com/subject/zgtryctx.html