文件操作 - index.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/nodejs/terminal-link/index.js
编辑文件内容
'use strict'; const ansiEscapes = require('ansi-escapes'); const supportsHyperlinks = require('supports-hyperlinks'); const terminalLink = (text, url, {target = 'stdout', ...options} = {}) => { if (!supportsHyperlinks[target]) { // If the fallback has been explicitly disabled, don't modify the text itself. if (options.fallback === false) { return text; } return typeof options.fallback === 'function' ? options.fallback(text, url) : `${text} (\u200B${url}\u200B)`; } return ansiEscapes.link(text, url); }; module.exports = (text, url, options = {}) => terminalLink(text, url, options); module.exports.stderr = (text, url, options = {}) => terminalLink(text, url, {target: 'stderr', ...options}); module.exports.isSupported = supportsHyperlinks.stdout; module.exports.stderr.isSupported = supportsHyperlinks.stderr;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件