摘要:
```
要随时掌握工作区的状态,使用git status命令。 如果git status告诉你有文件被修改过,用git diff可以查看修改内容。 HEAD指向的版本就是当前版本,因此,Git允许我们在版本的历史之间穿梭,使用命令git reset --hard commit_id。
HEAD^
HEAD^^ 穿梭前,用git log可以查看提交历史,以便确定要回退到哪个版本。 要重返未来... 阅读全文
摘要:
```
awk -F ',' '{if($2 ~/\./ ) {print $1,$2 }}' 20160905_names > ttt1 awk -F ',' '{if($2 !~/[0-9]+\.[0-9]+/ ) {print $1,$2 }}' ttt1 > ttt2 rapid7.awk
{ if(($2 ~/./) && ($2 !~/[0-9]+.[0-9]+/... 阅读全文
摘要:
```
git remote -v
``` 阅读全文
摘要:
``` fs.watchFile(filename[, options], listener) Added in: v0.1.31 filename | options persistent interval listener Watch for changes on filename. The c 阅读全文
摘要:
kailli添加桌面快捷方式 /usr/share/applications/xxx.desktop 注意大小写要与Name对应 阅读全文
摘要:
–master spark://10.8.2.100:7077 –jars /usr/local/spark 1.5.2/lib/elasticsearch hadoop 2.1.1.jar 阅读全文
摘要:
rdesktop f a 16 u administrator p passwrod feelamcheung 192.168.0.2:8080 阅读全文
摘要:
问题 electron 打包好的应用找不到xml2json 但是开发环境npm start 运行正常 定位 node_modules没有包含在打的包中, 解决办法 no prune Be careful not to include node_modules you don't want into 阅读全文
摘要:
1、全局安装electron packager 2、在项目目录下执行命令 3 notice 阅读全文
摘要:
``` Aircrack-ng工具包有很多工具,我用到的工具主要有以下几个: airmon-ng 处理网卡工作模式 airodump-ng 抓包 aircrack-ng 破解 aireplay-ng 发包,干扰 另外还要用到以下 linux 命令: ifconfig 查看修改网卡状态和参数 macchanger 伪造 MAC iwconfig 主要针对无线网卡的工具 (同 ifconfig) iw... 阅读全文