文件操作 - tokenize-arg-string.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/atom/resources/app/apm/node_modules/yargs/lib/tokenize-arg-string.js
编辑文件内容
// take an un-split argv string and tokenize it. module.exports = function (argString) { var i = 0 var c = null var opening = null var args = [] for (var ii = 0; ii < argString.length; ii++) { c = argString.charAt(ii) // split on spaces unless we're in quotes. if (c === ' ' && !opening) { i++ continue } // don't split the string if we're in matching // opening or closing single and double quotes. if (c === opening) { opening = null continue } else if ((c === "'" || c === '"') && !opening) { opening = c continue } if (!args[i]) args[i] = '' args[i] += c } return args }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件