加载中
Bash Shell 的算术运算有四种方式

Bash shell 的算术运算有四种方式: 1:使用 expr 外部程式 加法 r=`expr 4 + 5` echo $r 注意! '4' '+' '5' 这三者之间要有空白 r=`expr 4 * 5` #错误 乘法 r=`expr 4 \* 5` 2:使用 $(( ))...

2018/10/24 14:51
544
Send Automatic Out Of Office replies from Outlook

For Microsoft Office Outlook 2016, 2013 and 2010 Click the File tab, and then click the Info tab in the menu. Click Automatic Replies (Out of Office). ... In the Automatic Repli...

2017/01/25 18:22
55
Git tag

# 查看本地仓库的tags git tag # 添加一个tag git tag <tagname> # push 以上tag到远端 git push origin <tag_name> # 删除一个本地仓库的tag git tag -d <tagname> # 删除远端的一个tag git...

2017/01/02 14:39
64
在SpringBoot项目中加载自己的资源文件

最近我在练习使用Spring Boot 和 Spring Cloud. 在写DummyEmployeeDao时, 要读取src/main/resources/employee.yml文件. 我采用的是标准 Maven 项目结构. 所以 mvn clean package 之后, emplo...

2017/01/02 13:52
2.1K
Jenkins 2.7.1 安装

system admin e-mail address 这里设置要和发件人邮箱保持一致。 1.如果不保持一致报错如下图所示: failed to send out e-mail com.sun.mail.smtp.smtpsendfailedexception: 553 mail fro...

2016/07/28 08:16
576

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部