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
以上是Linux怎麼用Node.js寫一個命令列工具的詳細內容。更多資訊請關注PHP中文網其他相關文章!