This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo | |
| sudo sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo | |
| sudo yum install -y apache-maven | |
| mvn --version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REM windows下,操作zip版postgres常用命令。参数的意义请参照官方文档 | |
| REM zip版postgres下载地址:https://www.enterprisedb.com/download-postgresql-binaries | |
| REM 设置为postgres zip版本解压缩路径<path_to_pgsql> | |
| set PG_HOME=<path_to_pgsql> | |
| cd %PG_HOME% | |
| REM 自定义数据库保存文件夹 | |
| mkdir data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # Download and run the latest release version of the Certbot client. | |
| # | |
| # NOTE: THIS SCRIPT IS AUTO-GENERATED AND SELF-UPDATING | |
| # | |
| # IF YOU WANT TO EDIT IT LOCALLY, *ALWAYS* RUN YOUR COPY WITH THE | |
| # "--no-self-upgrade" FLAG | |
| # | |
| # IF YOU WANT TO SEND PULL REQUESTS, THE REAL SOURCE FOR THIS FILE IS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| function formatYYYYMM(dt) { | |
| var y = dt.getFullYear(); | |
| var m = ('00' + (dt.getMonth()+1)).slice(-2); | |
| var d = ('00' + dt.getDate()).slice(-2); | |
| return (y + m); | |
| } | |
| function getUpperLinePrice(txt) { |
OlderNewer