shell
文章平均质量分 56
SongYuLong的博客
学无止境
展开
-
Ubuntu 基于sox音频处理工具shell脚本批量处理音频文件
【代码】Ubuntu 基于sox音频处理工具shell脚本批量处理音频文件。原创 2024-09-06 11:53:38 · 472 阅读 · 0 评论 -
shell 常用命令
#将当前目录下所有文件“AAA”字符串替换为“BBB”find ./ -type f | xargs sed -i ‘s/AAA/BBB/g’原创 2020-09-21 14:41:12 · 78 阅读 · 0 评论 -
shell 笔记
变量:shell变量开头是一个字母或下划线,后面跟任意长度字母,数字,下划线。$myvar=hello$echo $myvar hello变量值包含空格,需要引号$fullname="hello world"$echo $fullnamehello world单行可以多次赋值$first=one second=two thrid=three$full="$firs...原创 2018-08-22 21:03:38 · 196 阅读 · 0 评论 -
shell if else
shell 判断文件夹或文件是否存在文件夹不存在则创建if [ ! -d "/file/" ];thenecho "文件夹不存在"elseecho "文件夹已经存在"fi文件存在if [ ! -f "/file/filename" ];thenecho "文件不存在"elseecho "文件存在"fi判断文件夹是否存在if [ -d "/data原创 2018-08-20 15:08:43 · 3693 阅读 · 0 评论 -
linux mount,umount,remount
mount -t yaffs2 /dev/mtdblock7 /data#挂载为读写mount -o rw -t yaffs2 /dev/mtdblock7 /data#挂载为只读mount -o ro -t yaffs2 /dev/mtdblock7 /data#重新挂载 -o rw(读写), -o ro(只读)mount -o rw,remount /data。mount 查看分...原创 2019-03-25 11:10:31 · 1738 阅读 · 0 评论