文件操作 - quote.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/shell-quote/quote.js
编辑文件内容
'use strict'; module.exports = function quote(xs) { return xs.map(function (s) { if (s === '') { return '\'\''; } if (s && typeof s === 'object') { return s.op.replace(/(.)/g, '\\$1'); } if ((/["\s]/).test(s) && !(/'/).test(s)) { return "'" + s.replace(/(['\\])/g, '\\$1') + "'"; } if ((/["'\s]/).test(s)) { return '"' + s.replace(/(["\\$`!])/g, '\\$1') + '"'; } return String(s).replace(/([A-Za-z]:)?([#!"$&'()*,:;<=>?@[\\\]^`{|}])/g, '$1\\$2'); }).join(' '); };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件