Go on on on and on...


  • Home

  • Categories

  • Tags

  • Archives

  • Message

  • About

  • Search

实践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 »

实践Shell脚步修改Nginx upstream配置文件

Posted on 2018-12-26 | In 网络 | Visitors

change_nginx_upstream_conf.sh

Read more »

关于产品设计

Posted on 2018-12-25 | In 业务 | Visitors

sprint

Read more »

实践sed

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

```shell $ sed –help 用法: sed [选项]… {脚本(如果没有其他脚本)} [输入文件]…

Read more »

实践cat

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

cat命令用于显示文件内容到标准输出

Read more »
1 … 70 71 72 … 114
Ray Wang

Ray Wang

My Blog

1139 posts
31 categories
RSS
© 2025 Ray Wang
Powered by Jekyll
Theme - NexT.Muse