Go on on on and on...


  • Home

  • Categories

  • Tags

  • Archives

  • Message

  • About

  • Search

实践比特币

Posted on 2019-01-18 | In 数据库 | Visitors

比特币入门教程

Read more »

实践区块链

Posted on 2019-01-18 | In 数据库 | Visitors

HyberLedger

Read more »

实践Vert.x

Posted on 2019-01-08 | In Java | Visitors

Vert.x is a tool-kit for building reactive applications on the JVM.

Read more »

实践Android Studio

Posted on 2019-01-07 | In 移动互联网 | Visitors

设定Android SDK Location,比如:/media/ray/Resource/Android/Sdk

Read more »

实践Android

Posted on 2019-01-06 | In 移动互联网 | Visitors

应用(Application)

Read more »

实践Linux下访问Windows远程桌面

Posted on 2018-12-26 | In OS | Visitors

remmina

Read more »

实践nslookup

Posted on 2018-12-26 | In OS | Visitors

Debian

Read more »

实践grep

Posted on 2018-12-26 | In OS | Visitors

grep (global search regular expression_r(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的grep家族包括grep、egrep和fgrep。egrep和fgrep的命令只跟grep有很小不同。egrep是grep的扩展,支持更多的re元字符, fgrep就是fixed grep或fast grep,它们把所有的字母都看作单词,也就是说,正则表达式中的元字符表示回其自身的字面意义,不再特殊。linux使用GNU版本的grep。它功能更强,可以通过-G、-E、-F命令行选项来使用egrep和fgrep的功能。

Read more »

实践find

Posted on 2018-12-26 | In OS | Visitors
1
2
3
4
5
6
# 查找src目录及子目录下以.class结尾的文件
$ find src -name *.class
# 查找src目录及子目录下以.class结尾的文件,然后删除他们
$ find src -name *.class -exec rm {} \;
# 查找src目录及子目录下以.class结尾的文件,然后删除他们,删除前会请求确认
$ find src -name *.class -ok rm {} \;
Read more »

实践Java应用启动和停止shell脚本

Posted on 2018-12-26 | In OS | Visitors

```shell #!/bin/bash

Read more »
1 … 68 69 70 … 113
Ray Wang

Ray Wang

My Blog

1123 posts
29 categories
RSS
© 2025 Ray Wang
Powered by Jekyll
Theme - NexT.Muse