Shell
小鱼仙官
这个作者很懒,什么都没留下…
展开
-
shell 重启wlan0
#/bin/bashwhile truedotemp=`ifconfig |grep wlan| awk '{print $1}'`echo $tempif [ "$temp" != "wlan0" ];then sudo ifconfig wlan0 upfi sleep 60 done记录awk的使用原创 2020-03-07 09:33:06 · 297 阅读 · 0 评论 -
shell 监测文件夹下文件是否修改, 多任务模式,
Shell 监测文件夹下文件是否修改,若修改则执行新文件 多任务模式#!/bin/bashmusic_dir=/home #目录下面只有一首音乐startTime=$(date +%s) #程序的开始时间echo $startTimetmp=1 music_play_time=600 #单位...原创 2018-09-12 08:54:27 · 325 阅读 · 0 评论 -
shell 脚本从字符串中提取想要的字符
#!/bin/bashtest=China_jolin_Tsai_Singer.mp3num1=${test#*_} num2=${num1#*_} surname=${num2%_*}num4=${test##*_}profession=${num4%.*}echo $testecho $num1echo $num2echo $surnameecho $num4...原创 2018-09-10 10:25:02 · 14309 阅读 · 0 评论 -
FTP 上传-下载-文件脚本(亲测成功)----复杂版
ftp上传文件脚本,若本地上传文件路径下没有文件则会说为空,上传成功后则会删除文件,失败则不作为说明:$1:本地上传下载文件路径 $2:服务器IP $3:用户名 $4:密码#/bin/bashDIRCTORY=$1is_empty_dir(){ return `ls -A $DIRCTORY | wc -w...原创 2018-09-07 18:01:08 · 1940 阅读 · 0 评论 -
ftp 上传下载脚本(亲测成功) ---简版
!/bin/bash#上传文件ftp -n<<-EOF open ftpIP #FTP服务器IPuser ftpUser ftpPasswd #用户名 密码passive #被动模式 active 主动模式binary # 二进制传输hash #切换散列符号(#)打印cd Up/ #ftp上文件目录lcd /home/... #本地目录prompt #...原创 2018-09-03 16:50:15 · 12055 阅读 · 1 评论 -
查找文件中的某个单词
find -type f | xargs grep "hello"原创 2018-11-23 15:21:55 · 1792 阅读 · 0 评论