- 浏览: 209887 次
- 性别:
- 来自: 深圳
最新评论
-
gelongmei:
威武我大酒神
shell脚本不换行刷新数据
文章列表
压缩
tar -czvf /path/to/file.tar.gz file
解压
tar -xzvf /path/to/file.tar.gz /path/to
加密压缩
tar -czvf - file | openssl des3 -salt -k password -out /path/to/file.tar.gz
解密解压
openssl des3 -d -k password -salt -in /path/to/file.tar.gz | tar xzf -
转自:
无意间发现了这个,估计以后会有用,Java 8 的 Nashorn 脚本引擎教程
spring boot 自动装配时间
D:\libs\maven_none\org\springframework\boot\spring-boot-autoconfigure\2.0.3.RELEASE\spring-boot-autoconfigure-2.0.3.RELEASE.jar!\META-INF\additional-spring-configuration-metadata.json
D:\libs\maven_none\org\springframework\boot\spring-boot-autoconfigure\2.0.3.RELEASE\spring-boot-a ...
Spring WebFlux快速上手——响应式Spring的道法术器
转自:自定义java.policy配置(如何让你的类禁止读写文件?禁止创建Socket对象?)
package com.test;
import java.security.Permission;
public class MySecurityManager extends SecurityManager {
public void checkPermission(Permission perm) {
System.out.println("perm=" + perm);
super.checkPermission(perm);
}
}
为了让MySecurit ...
sdkman工具的使用 #unix linux
Scoop Windows 的命令行安装程序管理工具 #windows
brew #mac
LINUX命令大全
rpm包制作
cpio,dump,restore,rpm
将/etc下的所有普通文件都备份到/opt/etc.cpio,使用以下命令:
find /etc –type f | cpio –ocvB >/opt/etc.cpio
将系统上所有资料备份到磁带机内,使用以下命令:
find / -print | cpio -covB > /dev/st0
这里的/dev/st0是磁带的设备名,代表SCSI磁带机。
查看上例磁带机上备份的文件,使用以下命令:
cpio -icdvt < /dev/st0 > /tmp/st_content
有时可能因 ...
一、轮子的必要性
表达式的求值上,java的选择非常多,强大的如Groovy、JRuby,N年没维护的beanshell,包括javaeye上朋友的IKExpression。为什么还需要Aviator?或者说Aviator的特点是什么?
我将Aviator定位在Groovy这样全功能的脚本和IKExpression这样的简易的表达式求值之间的东西,如果你不希望带上Groovy那么庞大的jar却只用上一点点的功能,如果你希望功能和性能上比IKExpression好那么一些,那么也许你可以考虑Aviator。
Aviator的设计思路跟利用GroovyObject的求值 ...
WebMvcConfigurationSupport 万变不离其中
/*
* Copyright 2002-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* ...
/etc/bashrc
# System wide functions and aliases
# Environment stuff goes in /etc/profile
# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# wi ...
xmlto 处理xml
#asciidoc
DOCS
AssicDoc 包括 asciidoc 和 a2x 两个命令。后者甚至还能够将文本文档转换成 PDF、HTML Help 等格式。
数组的基本赋值
arr=(a b c)
arr[index]=a
2.常用的两个方法
str=${arr[@]}(数组转化成字符串)
len=${#arr}(数组长度)
3.遍历数组的方法
https://www.cnblogs.com/dmir/p/6403904.html
抽取代码
ctrl+alt+m
右键-》refactor-》replace constructor with builder
ctrl+alt + #v,c,f,p,shift+p,shift+y