yum install lrzsz
# https://ohse.de/uwe/software/lrzsz.html
| @echo off | |
| rem npp-windows app... | |
| rem http://stackoverflow.com/questions/636381/what-is-the-best-way-to-do-a-substring-in-a-batch-file | |
| set fileRelativePath=%1 | |
| set filepath="%~dp0..\..\%fileRelativePath:~17,-1%" | |
| start E:\local\usr\share\npp\notepad++.exe %filepath% | |
| rem pause |
| diff --git a/src/main/java/com/cxy/redisclient/integration/I18nFile.java b/src/main/java/com/cxy/redisclient/integration/I18nFile.java | |
| index 1df1322..302e279 100644 | |
| --- a/src/main/java/com/cxy/redisclient/integration/I18nFile.java | |
| +++ b/src/main/java/com/cxy/redisclient/integration/I18nFile.java | |
| @@ -49,6 +49,8 @@ public class I18nFile extends PropertyFile { | |
| public static final String NAME = "NAME"; | |
| public static final String TYPE = "TYPE"; | |
| public static final String SIZE = "SIZE"; | |
| + public static final String COMMENT = "COMMENT"; | |
| + |
| import static org.junit.Assert.assertEquals; | |
| import java.io.BufferedReader; | |
| import java.io.BufferedWriter; | |
| import java.io.ByteArrayInputStream; | |
| import java.io.ByteArrayOutputStream; | |
| import java.io.FileInputStream; | |
| import java.io.FileNotFoundException; | |
| import java.io.FileOutputStream; |
| import java.io.IOException; | |
| import java.util.StringTokenizer; | |
| import org.apache.hadoop.conf.Configuration; | |
| import org.apache.hadoop.fs.FileSystem; | |
| import org.apache.hadoop.fs.Path; | |
| import org.apache.hadoop.io.IntWritable; | |
| import org.apache.hadoop.io.LongWritable; | |
| import org.apache.hadoop.io.Text; |
| package com.github.winse.hadoop | |
| import org.apache.hadoop.mapreduce.Job | |
| import org.apache.hadoop.mapreduce.Reducer | |
| import org.apache.hadoop.io.Text | |
| import org.apache.hadoop.io.IntWritable | |
| import org.apache.hadoop.io.LongWritable | |
| import org.apache.hadoop.mapreduce.Mapper | |
| import org.apache.hadoop.conf.Configuration | |
| import org.apache.hadoop.mapreduce.lib.input.FileInputFormat |
| [root@docker apache-tomcat-7.0.37]# git diff --cached | |
| diff --git a/bin/catalina.sh b/bin/catalina.sh | |
| old mode 100644 | |
| new mode 100755 | |
| diff --git a/bin/configtest.sh b/bin/configtest.sh | |
| old mode 100644 | |
| new mode 100755 | |
| diff --git a/bin/daemon.sh b/bin/daemon.sh | |
| old mode 100644 | |
| new mode 100755 |
| 127.0.0.1:8888> sadd mylist 8 13 9 1 4 888 14 143 | |
| (integer) 8 | |
| 127.0.0.1:8888> SCARD mylist | |
| (integer) 8 | |
| 127.0.0.1:8888> SMEMBERS mylist | |
| 1) "1" | |
| 2) "4" | |
| 3) "8" | |
| 4) "9" | |
| 5) "13" |
| using cn.bmob.api; | |
| using cn.bmob.io; | |
| using cn.bmob.json; | |
| using cn.bmob.tools; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; |