- 浏览: 207729 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (291)
- ERP (3)
- JSP/Servlet (13)
- DB (8)
- MongoDB (2)
- Python (3)
- Maven (8)
- GIT (1)
- Windows (8)
- Java (24)
- Informatica (2)
- PHP (1)
- Javascript (25)
- Tomcat (2)
- spring (13)
- HTML5 (11)
- Nginx (2)
- NodeJS (6)
- Linux (40)
- AngularJS (1)
- Android (3)
- Selenium (3)
- 理财 (6)
- 工作心得 (9)
- SQLServer (10)
- Hibernate/JPA (6)
- Bootstrap (1)
- C# (3)
- MySql (4)
- highchart (1)
- hadoop (5)
- ZooKeeper (2)
- Hbase (8)
- Avro (2)
- Hive (2)
- Flume (5)
- Kafka (11)
- Sqoop (3)
- Pig (1)
- Spark (1)
- Storm (2)
- Redis (1)
- Memcached (1)
- Dubbo (2)
- Phoenix (2)
最新评论
-
一尾金鱼:
可以作为查询手册了,页面布局也好~
JSP EL -
darkgost:
您好,我按照你的方法,在Service1.cs中添加如下代码: ...
C#Windows 服务制作安装删除. 用户注销后,程序继续运行
1.基于关键字搜索
syntax:grep [paramter] "keywords" filepath
[paramter]: -i ignore upper or lower case
-n show the located row number
-v show the row which not contain the "keywords"
-Ax show specific number of rows after the "keywords" located row
-Bx show specific number of rows after the "keywords" located row
eg: find / -user msdomain1\pzhou | grep 'keywords
grep -B3 "peter" /date/file
2. cut基于列处理文本
syntax: cut [paramter] file
paramter: -d point out he seperate words (default tab)
-f point out the numver of column which will be output
-c cut rows by index of character in each row
eg: cut -c2-6 /etc/passwrod show form 2 to 6 character of each row
cut -d: -f1 /ect/passwd
3. wc statistic infor of text
syntax: cut [params] file
params: -l number of rows
-w number of words
-c number of byte
-m number of character
4.sort text
syntax: sort [params] file
params: -r order by desc
-n sort by number
-f ingore upper or lower case
-u delete duplicated row
5.uniq delete duplicated labour rows
syntax: uniq file
6. compare two file
syntax: diff [param] file1 file2
params: -i ignore upper or lower case
-b ignore blank
-u make a output more uniform(use to make patch file)
7.check spell
syntax: aspell file
8.tranfer file
syntax: tr [params] < filepath
params: -d 'words' delete all 'words'
'a-z' 'A-Z' switch from lower case to upper case
9 replace workds
syntax: sed
eg: sed 's/word1/word2/g' file search(s) and replease all(globally g) word1 to replace word2
sed '1,50s/word1/word2/g' file search and replace for row 1to50
sed -e 's/word1/word2/g' -e 's/word3/word4/g' file iterate replace condition
sed -f conditionfilename file release replace condition from file
syntax:grep [paramter] "keywords" filepath
[paramter]: -i ignore upper or lower case
-n show the located row number
-v show the row which not contain the "keywords"
-Ax show specific number of rows after the "keywords" located row
-Bx show specific number of rows after the "keywords" located row
eg: find / -user msdomain1\pzhou | grep 'keywords
grep -B3 "peter" /date/file
2. cut基于列处理文本
syntax: cut [paramter] file
paramter: -d point out he seperate words (default tab)
-f point out the numver of column which will be output
-c cut rows by index of character in each row
eg: cut -c2-6 /etc/passwrod show form 2 to 6 character of each row
cut -d: -f1 /ect/passwd
3. wc statistic infor of text
syntax: cut [params] file
params: -l number of rows
-w number of words
-c number of byte
-m number of character
4.sort text
syntax: sort [params] file
params: -r order by desc
-n sort by number
-f ingore upper or lower case
-u delete duplicated row
5.uniq delete duplicated labour rows
syntax: uniq file
6. compare two file
syntax: diff [param] file1 file2
params: -i ignore upper or lower case
-b ignore blank
-u make a output more uniform(use to make patch file)
7.check spell
syntax: aspell file
8.tranfer file
syntax: tr [params] < filepath
params: -d 'words' delete all 'words'
'a-z' 'A-Z' switch from lower case to upper case
9 replace workds
syntax: sed
eg: sed 's/word1/word2/g' file search(s) and replease all(globally g) word1 to replace word2
sed '1,50s/word1/word2/g' file search and replace for row 1to50
sed -e 's/word1/word2/g' -e 's/word3/word4/g' file iterate replace condition
sed -f conditionfilename file release replace condition from file
发表评论
-
linux后台运行和关闭、查看后台任务
2017-07-11 19:18 831linux后台运行和关闭、查看后台任务 fg、bg ... -
Linux包管理rpm yum
2017-06-19 18:50 420rpm命令是RPM软件包的管理工具。rpm原本是R ... -
shell脚本监控登录用户是否异常
2017-05-16 15:18 6311, 下载php apt install php 或 ... -
网络神器 Netcat
2017-05-10 15:31 436参考: http://www.oschina.net ... -
8 个实用的 Linux netcat 命令示例
2017-05-10 15:30 341Netcat 或者叫 nc 是 Linux ... -
Linux 跳板机脚本
2017-05-10 13:00 807先生成和分发秘钥: ssh-keygen -t dsa - ... -
Bash脚本:下载编译安装nginx
2017-05-03 14:59 411下载nginx-1.8.1.tar.gz, 安装到目录/u ... -
bash脚本: 监控Tomcat
2017-05-03 11:31 285#!/bin/bash ########### ... -
循环语句 for while until
2017-04-21 10:02 331for i in /etc/lock/subsy ... -
Linux echo命令详解
2017-04-14 15:39 390-n: 不进行换行; -e:激活转义字符。使用-e选 ... -
Linux 内存 CPU 磁盘 网络流量的监控
2017-04-14 11:12 736内存: free 命令 free命令由procp ... -
Linux 设置发送qq邮件
2017-04-13 16:44 484操作系统:centos 6.8 1. 安装mail ... -
bash编程之 crontab 定时任务
2017-03-30 09:16 384crontab 定时任务 # Example of j ... -
bash编程之 find文件查找工具
2017-03-30 09:13 405find 文件查找工具,通过遍历指定路径下的文件系统完成查找 ... -
bash编程之 第六课作业
2017-03-25 18:29 3361、脚本使用格式: mkscript.sh [-D|--d ... -
bash编程之 字符串操作
2017-03-25 15:58 418字符串切片:${var:offset:lenth} a= ... -
bash编程之 函数
2017-03-24 15:47 524函数:代码复用 模块编程 语法: function ... -
bash编程之 数组
2017-03-24 15:41 441数组:连续的多个独立内存空间,每个内存空间相当于一个变量 ... -
bash编程之 小技巧
2017-03-24 15:28 270管道:将一个命令的 ... -
bash编程之 条件判断
2017-03-24 15:10 351条件测试: [ EXPRESSION ...
相关推荐
"用Linux命令行手工配置TCP/IP网络" 这篇文章主要介绍了如何使用Linux命令行手工配置TCP/IP网络。在Linux系统中,TCP/IP网络是通过编辑文本文件来进行配置的。这些文本文件包括/etc/HOSTNAME、/etc/resolv.conf、/...
总的来说,GVim7.2无论是在Linux还是Windows环境下,都是一个强大且易用的文本编辑器。其丰富的功能、高效的编辑性能以及中文支持,使它成为编程者不可或缺的工具之一。对于想要提升代码编写效率,或者对Vim感兴趣的...
4. **命令行界面(CLI)**: CLI 是在无图形界面的环境中通过文本输入指令来操作系统的工具,对于服务器管理和自动化任务来说非常高效。 5. **生产环境**: 指实际业务运行的环境,要求高稳定性和安全性,这个 CentOS ...
在Linux或者类Unix操作系统中,`vim`是一款强大的文本编辑器,而`vimgdb`是vim的一个扩展,它使得用户能够在vim环境中直接使用gdb进行程序调试。本文将详细介绍如何安装vim7.2和vimgdb7.2,以及如何对vim源码包打...
作为程序员和文本处理工作者的首选工具,GVim7.2提供了丰富的特性,使得代码编写、文档编辑以及各种文本操作变得极其高效。 ### 1. Vim的起源与GVim Vim起源于早期的Vi编辑器,由Bram Moolenaar在1991年基于Steve ...
【Linux操作系统基本命令】章节主要介绍了Linux系统的交互实用程序,包括登录、退出、文件操作、目录管理、查找、安全...同时,建议不断探索和实践,因为Linux命令行是一个强大的工具,熟练掌握后能大幅提升工作效率。
Linux操作系统版本:文档中提及Red Hat Linux 7.2,这是一个较早版本的Linux发行版。Red Hat是一个著名的Linux发行版本,广泛用于服务器端。 gcc和g++编译器:文档显示了gcc和g++编译器的使用方法。gcc主要用来编译...
- Linux继承了UNIX的很多特性,例如多用户、多任务的操作方式,以及基于文本的命令行界面。 - Linux系统的核心优势包括稳定性、安全性、多用户支持和丰富的软件资源。 2. Red Hat Linux的介绍 - Red Hat Linux是...
掌握Linux命令行操作是Linux学习的必备技能。了解文件命名规则,如不允许使用空格和某些特殊字符,可以帮助避免不必要的错误。命令格式通常由命令名、选项和参数组成,例如`ls -l`用来列出目录中的文件详情。文件...
对于初学者而言,掌握基本的Linux命令行操作是至关重要的第一步。本文将基于给定文件中的练习题目,深入解析Linux操作系统的几个关键知识点。 #### 一、文件权限管理 1. **更改文件权限**:通过`chmod`命令,可以...
pdf-7.2-py3-none-any.whl**:这个是实际的Python Wheel包文件,适用于Python 3解释器,不分平台(none)且不限制架构(any),这意味着它可以在任何支持Python 3的环境中运行,无论操作系统是Windows、Linux还是...
每个Linux进程都有自己的虚拟地址空间,包括文本段、数据段、堆、栈等。Linux内核通过页表实现虚拟地址到物理地址的映射。 **6.6 Linux物理空间管理** Linux内核负责管理物理内存,包括内存分配、回收、缓存管理等...
Vim(Vi IMproved)是一款强大的文本编辑器,它的源码包“vim_7.2.130.orig.tar.gz”提供了对编辑器内部工作原理的深入理解,并允许用户根据需求进行自定义编译和扩展。Vim 7.2.130 是该编辑器的一个特定版本,发布...
Vim 7.2 源码包是一个用于构建自定义VIM编辑器版本的软件包,特别是针对在Linux环境下进行程序开发的用户。Vim(Vi Improved)是一款功能强大的文本编辑器,它继承了经典的Vi编辑器并进行了许多增强和扩展。Vimgdb则...
7.2 编C语言程序 7.3 make工具 7.4 gdb调试工具 第8章 Bourn Again Shell编程 8.1 bash脚本的建立和运行 8.2 shell的变量 8.3 shell脚本位置参数的传递 8.4 控制结构语句 8.5 其他几个有用的语句 8.6 数值处理 8.7 ...
Vim(Vi IMproved)是一款强大的文本编辑器,源自经典的Vi编辑器,广泛应用于Linux、Unix、Mac OS X以及Windows等操作系统中。本资源包含了Vim的中文手册,覆盖了6.1、6.3和7.2三个重要的版本,为用户提供了详尽的...
##### 7.2 命令行基础 命令行是 Linux 系统中最常用的操作方式之一。了解基本的命令行操作对日常使用非常重要。例如,使用 ls 查看目录内容、使用 cd 进入指定目录等。 #### 八、文件系统结构 ##### 8.1 所有权和...