如何优雅地退出 Sass 交互式 shell(在 Windows 上)
我启动了 SASS 交互式 shell,如 http://sass-lang 中所述.com/docs/yardoc/file.SASS_REFERENCE.html#interactive_shell
我无法(优雅地)退出。
我尝试过:
- 退出
- 退出
- ^C
- ^。
- ^D
- ^Q
有人知道该怎么做吗?
I launched the SASS interactive shell, as described at http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#interactive_shell
I can't (gracefully) quit.
I've tried:
- quit
- exit
- ^C
- ^.
- ^D
- ^Q
Anyone know how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
^D
应该可以做到。您使用什么操作系统?^D
should do it. What OS are you using?鉴于您使用的是 Windows,您可能会将 Ctrl-Z (^Z) 识别为文件结束标记。
Given that you are on Windows, you might get Ctrl-Z (^Z) to be recognized as the end-of-file marker.
尝试 ctrl-c 或 ctrl-d(适用于 Windows)。
Try ctrl-c or ctrl-d (works on Windows).
我第一次遇到同样的错误,第二次安装 Gem 时,我添加了 sudo,它工作得很好,
如果有帮助的话,请注意。
I had the same error the first time and on my second time installing the Gem i added sudo which worked perfectly
Just a heads up if that helps.