1. 目標
コマンド ラインに書いたコマンドを入力して、ターゲット タスクを完了します
コマンド ライン要件はグローバルに有効です
コマンド ライン要件は削除できます
コマンド ライン関数は表示するファイルを生成します現在の日付
2. コード部分
新しいファイルを作成し、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'); });
command startファイル ディレクトリに、新しい date.txt ファイルが次の内容で生成されます。writeFile success!!!!
command end
#2/28/2018グローバルに有効になるようにコマンドを変更しますcreate By karuru
ln sherryFile /usr/local/bin/sherryFileコマンドを削除します
rm /usr/local/bin/sherryFile
以上がNode.js を使用して Linux でコマンド ライン ツールを作成する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。