MarkdownPad 2中编辑

Posted 张飘扬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MarkdownPad 2中编辑相关的知识,希望对你有一定的参考价值。

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

七级标题

八级标题

#!/bin/bash
declare -i evenSum=0
declare -i i=2
while [ $i -le 100 ]; do
    let evenSum+=$i
    let i+=2
done
echo $evenSu


#!/bin/bash
#
cat << EOF
cpu)print cpu information
mem)print memory information
disk)print disk information
quit)quit
Enter your option
EOF
read -p "Enter your option: " option
option=`echo $option | tr ‘A-Z‘ ‘a-z‘`
while [[ "$option" != "quit" ]]; do
if [[ "$option" == "cpu" ]]; then
    cat /proc/cpuinfo
elif [[ "$option" == "mem" ]]; then
    free -m
elif [[ "$option" == "disk" ]]; then
    df -h
else
    echo "Wrong option..."
fi
read -p "Enter your option again: " option
option=`echo $option | tr ‘A-Z‘ ‘a-z‘`
done

以上是关于MarkdownPad 2中编辑的主要内容,如果未能解决你的问题,请参考以下文章

《hexo编辑器 MarkdownPad 2 》

MarkdownPad2使用代码高亮插件

关于MarkDownPad2安装遇到的一些问题

Win10环境下,告别MarkdownPad,用Notepad++搭建编写md文档的环境

MarkdownPad

MarkdownPad目录生成工具,让你的Markdown文档更方便查看