1. var scores = [1, 2, 3]; var total = 0; for (var score in scores) { total += score; } var mean = total/score.length; console.log(mean); 输出结果是1还是4? 工作中遇到的比较容易出错.考验知识掌握程度的小问题,记录下来,不定期更新...…
[背景] 使用之中发现一些eclipse使用的小技巧,记录下来供以后查阅 Eclipse保存preferences,并导入到其他workspaces The Export wizard can be used to export preferences from the Workbench to the local file system. To export a preference file: Select File > Export . In the Export wizard sel…
1.查找当前目录中所有大于500M的文件,把这些文件名写到一个文本文件中,并统计其个数. find ./ -size +500M -type f | tee file_list | wc -l 2.在目录/tmp下找到100个以abc开头的文件,然后把这些文件的第一行保存到文件new中. for filename in `find /tmp -type f -name "abc*"|head -n 100` do sed -n '1p' $filename>>new don…
1. 概述 for 循环读取文件内容时, 输出被打得稀碎 2. 场景 需求 读入文件 逐行显示 源文件 Continuous Delivery with Docker and Jenkins Jenkins 2 Up and Running Jenkins 2.x Continuous Integration Cookbook(3rd) Jenkins Fundamentals 脚本 #!/bin/bash for line in `cat ${1}` do echo ${line} done…