【bash】+[javascript]实践

一、读取多个文件第一行取出来存到新的文件里的bash

$ for f in `ls *.trn`
> do
> head -n 1 $f >> a.out
> done

将文件名写入到一个文件中

$ ls -l | grep ".trn" > b.txt

二、JavaScript中,定时的使用

setInterval(function(){
            show();
        },1000);
window.clearInterval(time33);
time33 = window.setInterval(function(){ refreshCount11(queuePeoplePrompt);},maxTime * 60 * 1000); //maxTime * 60

注意,window.setInterval里面函数若不但参数,直接写函数名,不加后面括号;若带参数,写成上面function格式,否则定时不生效,或提示找不到refreshCount11!!

三、shell中的vim和其他命令

1 :set nu 显示行号
2 :1,120d 删除第1-120行内容
3 大写G,光标定位到最后一行
4 ps -ef | grep turn 管道搜索查询

你可能感兴趣的:(【bash】+[javascript]实践)