时间:2021-07-01 10:21:17 帮助过:2人阅读
本文介绍了用Node.js写一个简单的命令行工具,分享给大家,具体如下:
操作系统需要为Linux
1. 目标
2. 代码部分
介绍: 生成一个文件,文件内容为当前日期和创建者
#! /usr/bin/env node console.log('command start'); const fs = require('fs'); let date = new Date().toLocaleDateString(); let data = date + '\n\t' + '——create By karuru'; fs.writeFile('./date.txt', data, 'utf8', (err) => { if (err) { console.log('sherryFile command wrong', err); return false; } console.log('writeFile success!!!!'); console.log('command end'); });
command start
writeFile success!!!!
command end
在该文件目录下,会有一个新的date.txt文件生成,内容如下
2/28/2018
create By karuru
将命令修改为全局有效
ln sherryFile /usr/local/bin/sherryFile
删除命令
rm /usr/local/bin/sherryFile
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。