Questions tagged «terminal»

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




21
macOS更新后Git无法正常运行(xcrun:错误:无效的活动开发人员路径(/ Library / Developer / CommandLineTools)
我已更新到macOS Mojave(这也发生在Catalina更新中)。 今天早上,我在MacBook Pro的命令行中导航到工作的代码库,在存储库中键入“ git status”,并收到错误消息: xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun


14
如何清除/删除终端中的当前行?
如果我使用终端并在命令的文本行中键入,是否有热键或任何方式清除/删除该行? 例如,如果我当前的行/命令确实很长,例如: > git log --graph --all --blah..uh oh i want to cancel and clear this line <cursor is here now> 是否有热键或命令可以从上面转到: > ? 通常,我会按该↓键,如果我当前的行是历史上的全新行,则将其清除。但是,如果我通过↑按键浏览命令历史记录并开始编辑或使用这些命令,↓则只会将提示更改为历史记录中的下一个最新命令,因此除非我按↓多次,否则该命令在这里不起作用。
793 bash  terminal 



14
在Mac OS Finder中打开此处的终端[关闭]
关闭。这个问题是题外话。它当前不接受答案。 7年前关闭。 已锁定。该问题及其答案被锁定,因为该问题是题外话,但具有历史意义。它目前不接受新的答案或互动。 是否有类似于Mac OS的Windows Powertoy的“此处打开命令窗口”?我已经通过Google搜索找到了几个插件,但想查看最适合那里的开发人员的插件。
682 macos  terminal  finder 

25
使用bash和regex在一行中查找并杀死一个进程
我经常需要在编程期间杀死一个进程。 我现在的方式是: [~]$ ps aux | grep 'python csp_build.py' user 5124 1.0 0.3 214588 13852 pts/4 Sl+ 11:19 0:00 python csp_build.py user 5373 0.0 0.0 8096 960 pts/6 S+ 11:20 0:00 grep python csp_build.py [~]$ kill 5124 如何自动提取进程ID并在同一行中将其杀死? 像这样: [~]$ ps aux | grep 'python csp_build.py' | kill <regex that …
647 regex  bash  terminal  awk 



7
OS X终端颜色[关闭]
关闭。这个问题是题外话。它当前不接受答案。 想改善这个问题吗? 更新问题,使其成为Stack Overflow 的主题。 7年前关闭。 我是OS X的新手,在使用Ubuntu Linux一段时间后刚接触Mac。我要弄清楚的许多事情是终端窗口中没有颜色-例如在运行ls -la或运行时显示的颜色(在Linux上)git status。 我只是不知道如何激活外壳中的颜色。
492 macos  shell  terminal  colors 

19
Github:“致命:远程起源已经存在”
我正在尝试遵循Michael Hartl的Rails教程但是遇到了一个错误。 我在Github上注册并发布了一个新的SSH密钥,并创建了一个新的存储库。但是,当我在终端输入下一行时,出现以下错误: Parkers-MacBook-Pro:.ssh ppreyer$ git remote add origin git@github.com:ppreyer/first_app.git fatal: remote origin already exists. 只是想知道是否有人遇到过这个问题?


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.