本篇文章主要介紹了詳解用Node.js寫一個簡單的命令列工具,現在分享給大家,也給大家做個參考。
本文介紹了用Node.js寫一個簡單的命令列工具,分享給大家,具體如下:
作業系統需要為Linux
1.目標
在命令列輸入自己寫的命令,完成目標任務
命令列要求全域有效
命令列要求可以刪除
命令列作用,產生一個文件,顯示目前的日期
2. 程式碼部分
新建一個文件,命名為sherryFile
文件sherryFile的內容
介紹: 產生一個文件,文件內容為當前日期和創建者
#! /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'); });
#給該文件賦予執行權限chmod 755 sherryFile
#在該檔案所在的檔案路徑下輸入./sherryFile
如果輸出以下內容,表示指令執行成功
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
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
基於datepicker定義自己的angular時間元件的範例
以上是詳細講解使用Node.js寫一個簡單的命令列工具(詳細教學)的詳細內容。更多資訊請關注PHP中文網其他相關文章!