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…
ansible之group模块 group模块是用来添加或者删除组 首先使用ansible-doc来查看用法 [root@note0 ansible]# ansible-doc -s group - name: Add or remove groups group: gid: # Optional `GID' to set for the group. local: # Forces the use of "local" command alternatives on platform…