Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
\left\{
\begin{matrix}
f(\vec x)=\frac{\sum\vec x}{2}\\
f(\vec x)=\frac{\sum\vec x}{3}
\end{matrix}
\right.Quick StartCreate a new post$ hexo new "My New Post"
More info: Writing
Run server$ hexo server
More info: Server
Generate static files$ hexo generate
More info: Generating
Deploy to remote sites$ ...
shell基本使用如果需要同时输入多个argument,那么如下两种表达是等价的:
$ echo Hello\ World
$ echo "Hello World"
机器有其自身的内置函数,这些内置函数是终端系统可以直接执行的,机器通过环境变量来定位这些内置函数的位置。如下操作可以显示环境变量的位置:
$ echo $PATH
在每次执行一次shell指令时,终端都会在上述路径中搜索是否存在对应的函数。linux系统的namespace(路径的根源)一般只有一个,就是root,但是Windows一般有多个Driver作为路径根源。
显示当前工作路径位置(present working directory):
$ pwd
改变当前工作位置(change directory):
$ cd xxx
$ cd - %回到上一次所在的位置
如果环境变量中缺少你想要执行的指令所在的位置,那么可以在执行命令时直接指定其具体位置。
显示当前所在位置的所有文件(list d):
$ ls
指令一般可以接受flags(开关)或者options(选择),可以指定一些额外的操作信息,可以用如下方式进行查看:
...