webpack笔记三 管理输出 增加src/print.js: export default function printMe() { console.log('I get called from print.js!'); } 在src/index.js中导入它: import _ from 'lodash'; import printMe from './print'; function component() { let element = document.createElement('d…
SHELL学习笔记一 SHELL学习笔记二 SHELL学习笔记三 for 命令 读取列表中的复杂值 从变量读取列表 从命令读取值 更改字段分隔符 用通配符读取目录 which 使用多个测试命令 until 命令循环处理文件数据控制循环 break continue 命令 处理循环输出 for 命令 for var in list do commands done $ cat test1 #!/bin/bash # basic for command for test in Alabama Ala…