我是使用终端的新手,但是希望使用Jekyll启动并运行网站。我已经按照这里的步骤操作了一些工作:http://www.andrewmunsell.com/tutorials/jekyll-by-example/index.html
终端似乎表现得很奇怪。例如,当我键入jekyll help
时,我会显示以下消息,并重复多次。然后,我似乎没有能力在终端中输入任何其他内容。
NAME:
jekyll
DESCRIPTION:
Jekyll is a blog-aware, static site generator in Ruby
COMMANDS:
build Build your site
default
docs Launch local server with docs for Jekyll v1.1.2
doctor Search site and print specific deprecation
warnings
help Display global or [command] help documentation.
import Import your old blog to Jekyll
new Creates a new Jekyll site scaffold in PATH
serve Serve your site locally
ALIASES:
hyde doctor
server serve
GLOBAL OPTIONS:
-s, --source [DIR]
Source directory (defaults to ./)
-d, --destination [DIR]
Destination directory (defaults to ./_site)
--safe
Safe mode (defaults to false)
-p, --plugins PLUGINS_DIR1[,PLUGINS_DIR2[,...]]
Plugins directory (defaults to ./_plugins)
--layouts
Layouts directory (defaults to ./_layouts)
-h, --help
Display help documentation
-v, --version
Display version information
-t, --trace
Display backtrace when an error occurs
~
~
(END)
我的设置是否可能导致此问题?
答案 0 :(得分:1)
别担心! jekyll help
正在使用名为less
的程序,该程序是“分页符”。它使您能够阅读一个大文件(在这种情况下,Jekyll的帮助文本)。
您可以使用j
和k
上下移动。要退出,请输入q
。