繁体   English   中英

如何在Ubuntu上从命令行运行此html-minifier?

[英]How to run this html-minifier from the command-line on Ubuntu?

我正在尝试从Ubuntu命令行运行 HTML压缩程序。 但是,当我尝试这样做时出现错误。

NodeJS和NPM安装良好:

root$ apt-get install -y nodejs npm
Reading package lists... Done
Building dependency tree
Reading state information... Done
nodejs is already the newest version.
npm is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

安装html-minifier似乎可以正常工作:

root$ npm install html-minifier -g
npm http GET https://registry.npmjs.org/html-minifier
<... SNIP ...>
npm http 304 https://registry.npmjs.org/source-map
/usr/local/bin/html-minifier -> /usr/local/lib/node_modules/html-minifier/cli.js
html-minifier@3.5.9 /usr/local/lib/node_modules/html-minifier
├── commander@2.14.1
├── ncname@1.0.0 (xml-char-classes@1.0.0)
├── relateurl@0.2.7
├── he@1.1.1
├── param-case@2.1.1 (no-case@2.3.2)
├── camel-case@3.0.0 (upper-case@1.1.3, no-case@2.3.2)
├── clean-css@4.1.9 (source-map@0.5.7)
└── uglify-js@3.3.12 (source-map@0.6.1)

我可以看到已安装html-minifier:

root$ which html-minifier
/usr/local/bin/html-minifier

root$ head -5 /usr/local/bin/html-minifier
#!/usr/bin/env node
/**
 * html-minifier CLI tool
 *
 * The MIT License (MIT)

但是,当我尝试运行它时,出现以下错误:

root$ html-minifier
/usr/bin/env: node: No such file or directory

为什么我不能运行html-minifier? 我究竟做错了什么? 我该如何解决呢?

在ubuntu上, node称为nodejs 我可以看到两个选择

  1. 编辑文件“ / usr / local / bin / html-minifier”,并将#!/usr/bin/env node更改为#!/usr/bin/env nodejs

  2. 添加一个小脚本node为您启动nodejs ,或尝试使用alias node=nodejs

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM