Questions tagged «terminal»

终端或命令行界面是用于与操作系统或软件进行交互的纯文本界面。用户通常将命令键入终端以执行特定任务。

9
在pkg-config搜索路径中找不到软件包cairo。Node JS安装画布问题
我在节点上安装canvas模块时遇到问题..似乎与开罗有关,我收到此错误... npm http GET https://registry.npmjs.org/canvas npm http 304 https://registry.npmjs.org/canvas npm http GET https://registry.npmjs.org/nan npm http 304 https://registry.npmjs.org/nan > canvas@1.1.3 install /Users/plimb/Desktop/motion-therapy/node_modules/canvas > node-gyp rebuild Package cairo was not found in the pkg-config search path. Perhaps you should add the directory containing `cairo.pc' to the PKG_CONFIG_PATH environment variable No package 'cairo' …


5
对于终端应用程序,什么是良好的Java,类似于curses的库?[关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow 的主题。 3年前关闭。 改善这个问题 我想编写一个执行屏幕操作的Java终端应用程序。有没有好的图书馆可以让您像* nix / C世界中的诅咒一样操纵屏幕? 我正在寻找的最小功能是窗口和用户输入支持。 说到功能,我想在终端的某个区域定期更新一些数据,同时(同时)用户可以在屏幕的其他部分输入命令/文本。


7
如何使用bash在终端中删除和替换最后一行?
我想实现一个进度条,以bash显示经过的秒数。为此,我需要擦除屏幕上显示的最后一行(命令“ clear”将擦除所有屏幕,但是我只需要擦除进度条的那一行并将其替换为新信息)。 最终结果应如下所示: $ Elapsed time 5 seconds 然后在10秒钟后,我想用(在屏幕上的相同位置)替换此句子: $ Elapsed time 15 seconds
99 bash  replace  terminal  line 

13
如何从终端打开Webstorm
为了从终端编辑文件,我使用subl(用于升华文本)来编辑文件;示例:如果我需要编辑app.js文件,请使用sublapp.js。有什么方法可以设置Webstorm以从终端打开?

11
安装后找不到Gulp命令
我安装了gulp(全局),因为它运行了以下代码,所以看起来像是在工作: ├── tildify@0.2.0 ├── interpret@0.3.5 ├── pretty-hrtime@0.2.1 ├── deprecated@0.0.1 ├── archy@0.0.2 ├── minimist@0.2.0 ├── semver@2.3.2 ├── orchestrator@0.3.7 (stream-consume@0.1.0, sequencify@0.0.7, end-of-stream@0.1.5) ├── chalk@0.5.1 (escape-string-regexp@1.0.1, ansi-styles@1.1.0, supports-color@0.2.0, strip-ansi@0.3.0, has-ansi@0.1.0) ├── gulp-util@2.2.20 (lodash._reinterpolate@2.4.1, dateformat@1.0.8-1.2.3, vinyl@0.2.3, through2@0.5.1, multipipe@0.1.1, lodash.template@2.4.1) ├── liftoff@0.12.0 (extend@1.2.1, minimist@0.1.0, resolve@0.7.4, findup-sync@0.1.3) └── vinyl-fs@0.3.5 (graceful-fs@3.0.2, lodash@2.4.1, mkdirp@0.5.0, strip-bom@0.3.1, vinyl@0.2.3, through2@0.5.1, glob-watcher@0.0.6, …
97 macos  bash  terminal  npm  gulp 


10
Node.js console.log与console.info
使用console.logvs有console.info什么好处?还是其他任何与此相关的控制台命令? console.info("info"); console.error("error"); console.warn("warn"); 与 console.log("log"); 我以为它可能会更改输出的颜色或连接某种标签,但它们似乎都做相同的事情。并根据此处的文档: https://nodejs.org/api/console.html#console_console_info_data 他们似乎都和 console.log

8
使用pull命令时github锁定mac终端
我正在学习Mac(命令行)上的github,无论何时我都会git pull origin master得到这个 # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit. ~ ~ ~ ~ …
95 git  github  terminal 

5
查看Mac OS X中正在使用文件的进程
我希望能够跟踪文件并查看正在处理该文件的进程。那可能吗?我知道我可以在活动监视器中看到打开的进程的列表,但是我认为它正在迅速发生。原因是我使用的是框架,我认为框架的系统版本正在使用,而不是调试版本,并且我想看看哪个进程正在使用它。
93 macos  unix  terminal  audit  lsof 



3
如何使git diff写入stdout?
默认情况下,将git diff所有+-行打印到标准输出,但是我有一台(devian)机器(我通过ssh连接),在那里git diff将我引向编辑器(我不知道是哪一个),我需要按q继续。 我已经检查了git config,它看起来像: $ git config --list user.name=XXX user.email=XXX@XXX color.ui=false difftool.prompt=false mergetool.prompt=false core.repositoryformatversion=0 core.filemode=true core.bare=false core.logallrefupdates=true remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* remote.origin.url=XXX branch.master.remote=origin branch.master.merge=refs/heads/master $ git config --global --list user.name=XXX user.email=XXX@XXX color.ui=false difftool.prompt=false mergetool.prompt=false $ git config --system --list '/etc/gitconfig': No such file or directory 有我想念的地方吗?也许未知的工具是回退之类的东西,还是因为我的机器缺少某些东西?任何帮助表示赞赏。谢谢。
93 git  terminal 


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.