摘要: 'FOR /f "delims=" %%i IN ('DIR *.xlsx /b') DO excel2csv.vbs "%%i" "%%i.csv" if WScript.Arguments.Count < 2 Then WScript.Echo "Please specify the src a 阅读全文
posted @ 2020-04-13 18:45 xinyueliu 阅读(270) 评论(0) 推荐(0)
摘要: Dim ws Set ws=WScript.CreateObject("WScript.Shell") arrDict=array("A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P", 阅读全文
posted @ 2020-04-13 18:40 xinyueliu 阅读(167) 评论(0) 推荐(0)
摘要: #!/bin/sh TAG="aa:1234\/" DST="aa\/" for a in `find . -name '*.txt' -type f` do c=`cat ${a} | grep ${TAG}` reg=".*${TAG}.*" if [[ "${c}" =~ $reg ]] ; 阅读全文
posted @ 2020-04-06 17:40 xinyueliu 阅读(188) 评论(0) 推荐(0)
摘要: cut -d" " -f1 input1.txt >1.txt cut -d" " -f2 input1.txt >2.txt paste -d: 1.txt 2.txt paste -s -d: b.txt c.txt ls | paste -d"" - 阅读全文
posted @ 2020-04-01 21:04 xinyueliu 阅读(123) 评论(0) 推荐(0)
摘要: #!/bin/bash sed '{#remove empty line s/^M$// s/.$// /^$/d s/^!/#&/ :a s/^#\(.*\)/\1/ ta /^\[.*\]/ {N; s/\n/ /}}' input.txt 阅读全文
posted @ 2020-04-01 20:47 xinyueliu 阅读(175) 评论(0) 推荐(0)
摘要: void preOrderTraversal(BTNode *root) { if(NULL == root) { return; } printf("%d ", root->val); preOrderTraversal(root->lChild); preOrderTraversal(root- 阅读全文
posted @ 2020-03-28 00:14 xinyueliu 阅读(179) 评论(0) 推荐(0)
摘要: Assembly,Caucus,Colloquium, Colloquy,Commission,Committee,Conclave,Conference,Congress, Convention,Convocation,Council,Discussion,Forum,Lecture,Meetin 阅读全文
posted @ 2020-03-27 12:30 xinyueliu 阅读(131) 评论(0) 推荐(0)
摘要: brute force attack reclusiveShe 【had been living】 a reclusive life in Los Angeles 【since her marriage broke up】. unsociableMy marriage 【has broken up】 阅读全文
posted @ 2020-03-27 10:24 xinyueliu 阅读(114) 评论(0) 推荐(0)
摘要: enter code:push ebpmov ebp, esp leave code:mov esp,ebppop ebp classic example:entersub esp, 8leaveretn 10h In the mnemonic ret N, N is the size of par 阅读全文
posted @ 2020-03-26 12:21 xinyueliu 阅读(700) 评论(0) 推荐(0)
摘要: --upgrade pip python -m pip install --upgrade pip --python setup.py installpip install requests pip uninstall requests import requests 阅读全文
posted @ 2020-03-15 14:22 xinyueliu 阅读(141) 评论(0) 推荐(0)