09 2019 档案

Batch - 忽略FORFILES “no files found” error
摘要:ref:https://stackoverflow.com/questions/16820681/suppress-forfiles-no-files-found-error Solution: The solution is to capture the output of the FORFILE 阅读全文

posted @ 2019-09-27 18:04 frank_cui 阅读(855) 评论(0) 推荐(0) 编辑

Batch - forfiles 命令详解
摘要:forfiles 命令详解 注意: 这些命令是等价的: /S 等同于 -s, /M 等同于 -m 阅读全文

posted @ 2019-09-27 17:28 frank_cui 阅读(751) 评论(0) 推荐(0) 编辑

Linux下可以运行bat文件么?
摘要:bat是批处理文件,在windows和linux上都可以使用。 不过在linux的命令行中不可以直接敲"xxx.bat",系统会去找所有的命令。 想要调用bat文件,需要写绝对路径,比如"/home/myDir/xxx.bat",或者是切换到bat文件所在的目录,然后键入:"./xxx.bat".这 阅读全文

posted @ 2019-09-27 16:54 frank_cui 阅读(56012) 评论(0) 推荐(1) 编辑

Batch pk Shell - WindowsBatch与LinuxShell比较 [变量符号和关键字]
摘要:原文地址:WindowsBatch与LinuxShell比较[变量符号和关键字] 一 简单实例1)batch file 小结:- batch file一般以bat或cmd为后缀。- 第一行为@echo off表示关闭运行时batch file本身输入,只输出运行的结果。- rem和::表示注释。2) 阅读全文

posted @ 2019-09-27 16:47 frank_cui 阅读(683) 评论(0) 推荐(0) 编辑

Unix、Linux、Windows操作系统的区别
摘要:1.操作区别 原文地址: https://blog.csdn.net/qq_41026740/article/details/96018808 linux区分大小写,windows在dos界面命令下不区分大小写; linux所有内容均以文件形式保存包括硬件,用户,而windows文件和硬件没什么关系 阅读全文

posted @ 2019-09-27 16:43 frank_cui 阅读(5710) 评论(0) 推荐(0) 编辑

Leetcode - K Sum
摘要:List<List<Integer>> kSum_Trim(int[] a, int target, int k) { List<List<Integer>> result = new ArrayList<>(); if (a == null || a.length < k || k < 2) return result; Arrays.sort(a); kSum_Trim(a, target, 阅读全文

posted @ 2019-09-18 23:20 frank_cui 阅读(176) 评论(0) 推荐(0) 编辑

算法 - 快速排序
摘要:1.算法解析 ref: https://blog.csdn.net/adusts/article/details/80882649 假设我们现在对“6 1 2 7 9 3 4 5 10 8”这个10个数进行排序。首先在这个序列中随便找一个数作为基准数(不要被这个名词吓到了,就是一个用来参照的数,待会 阅读全文

posted @ 2019-09-18 00:13 frank_cui 阅读(212) 评论(0) 推荐(0) 编辑

手写代码注意点 -- HashMap
摘要:1.定义 <String,String>只需要写一遍 2.获取key和value 3.遍历 阅读全文

posted @ 2019-09-16 22:11 frank_cui 阅读(282) 评论(0) 推荐(0) 编辑

Batch - C:\Progra~1是什么意思
摘要:就是那种DOS下的8.3的规范,可以这样写 C:\Progra~1也可以这样写全名字的 "C:\Program File",因为这个路径中的文件夹名有空格,要用两个英文输入法下的双引号来引上 Progra~2 refers to Program Files Progra~1 refers to Pr 阅读全文

posted @ 2019-09-09 11:03 frank_cui 阅读(1655) 评论(0) 推荐(0) 编辑

Batch - Windows Batch 常用命令
摘要:比较符号(不能用 < , >) The reason operators like > are not used is because they have special meanings in shell scripts. The > is used to redirect output; < u 阅读全文

posted @ 2019-09-09 10:30 frank_cui 阅读(1531) 评论(0) 推荐(0) 编辑

Tomcat - 基本知识
摘要:基本概念 Tomcat是接收和解析http请求,并将结果返回客户端的应用程序 轻量级的web应用服务器 适用于并发性不是很高的系统中 开发和调试jsp的首选 类似的应用程序:Jetty, JBoss/WildFly, Glassfish, Weblogic Tomcat原理 Server服务器: 是 阅读全文

posted @ 2019-09-08 11:32 frank_cui 阅读(211) 评论(0) 推荐(0) 编辑

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8

导航

统计

levels of contents
点击右上角即可分享
微信分享提示