在本地 npm 包專案下 package.json 檔案中新增指令碼
,"keywords": ,
"author": "",
"license": "isc",
"dependencies": {}
}
建立目錄bin
, 並在bin
中建立檔案run
,這便是本地npm包的可執行檔案。
編輯run 檔案
#!/usr/bin/env nodeconsole.log('winyh script run success!');
包根目錄執行(鏈結)命令
npm link
此時,在任意乙個位置終端裡執行以下命令都可以看到輸出 winyh script run success!
winyh
建立可執行指令碼
在home目錄下新建資料夾mytest mkdir mytest進入mytest資料夾,新建檔案mysh,編輯mys 件 cd mytest touch mysh gedit mysh在mys 件中輸入如下內容 bin bash echo hello world 儲存並退出 可檢視一下許可權ls l...
python指令碼執行可執行檔案
python import os device r usbstor disk ven generic prod sd mmc rev 1.00 20100818841300000 0 blocksieze 32kb time 00 00 05 00 mode sr sw sv xr xw xv pa...
如何建立可執行的shell指令碼
1.首先有乙個可以執行的linux環境,最簡單使用vm虛擬機器加linux系統,此次使用ubuntu12系統 2.進入系統後,使用ctrl shift t進入命令列,使用mkdir命令建立乙個資料夾 mkdir shell script 建立乙個shell script的資料夾,使用ls命令檢視,可...