Linux shell basic2 cat find tr
Cat stands for concatenate.
Case 1.
When the text files have more blank lines, we want to remove them.
We can use regex \s+ '\n'.
cat file.txt | tr \s '\n'
cat -T file.txt # show tabs as ^.
cat -n file.txt # show line numbers
. Specifies current directory and .. Specifies the parent directory. This convention is followed throughout the Unix file system.
find . -iname "*.txt"
i means ignore the case.
find . \( -name "*.txt" -o -name "*.pdf" \) -print
./text.pdf
./new.txt
find . -iregex ".*\(\.py\|\.sh\)$"
./test.py
./new.PY
find . ! -name "*.txt" -print
Files not end with .txt.
find . -maxdepth 1 -type f -print
Just show file and not traverse the sub folder.
find . -type d
Just show the directory
Type :
f : file
d: directory
l: link
Print all the files that were accessed within the last 7 days as follows:
$ find . -type f -atime -7 -print
atime: access time
mtime: modify time
-ctime:change time
n order to print all the files that are having access time older than seven minutes, use the
following command:
$ find . -type f -amin +7 -print
For example, find all the files that are having a modification time greater than that of the
modification time of a given file.txtfile as follows:
$ find . -type f -newer file.txt -print
Search based on file size
Based on the file sizes of the files, a search can be performed as follows:
$ find . -type f -size +2k
# Files having size greater than 2 kilobytes
Instead of kwe can use different size units as the following:
b– 512 byte blocks
c– bytes
w– two byte words
k– Kilobyte
M– Megabyte
G– Gigabyte
find . -type f -name "*.c" -exec cat {} \;>all_c_files.txt
$ cat example.txt # Example file
1 2 3 4 5 6
7 8 9 10
11 12
$ cat example.txt | xargs
1 2 3 4 5 6 7 8 9 10 11 12
$ cat example.txt | xargs -n 3
1 2 3
4 5 6
7 8 9
10 11 12
echo "hello linux" | tr 'a-z' 'A-Z'
HELLO LINUX
echo "Hello 123 world 456" | tr -d '0-9'
Hello world
echo hello 1 char 2 next 4 | tr -d -c '0-9 \n'
1 2 4
echo "I am your friends?" | tr -s ' '
I am your friends?
find -type f | xargs md5sum
e8bc686b2c380b9ad56c024a03384150 ./sub/java.txt
a5bf231497e5d503172bfd39a387b197 ./all_txt_files.txt
e827b6437257f24b9e5fbba44fd98f5c ./num.txt
b6d9275e7e16b154059677fac91baa79 ./test.txt
b6d9275e7e16b154059677fac91baa79 ./mul_bank.txt
sort -r : sort in reverse order
Split can used to split file to specify size.
Linux shell basic2 cat find tr的更多相关文章
- Linux Shell脚本编程while语句案例
1,每隔3秒,打印一次系统负载 #!/bin/bash while true do uptime done 2,把监控结果保存到文件,在后台执行,然后用tail -f监控文件变化 ghostwu@de ...
- linux shell脚本之-变量极速入门与进阶(2)
1,$$:显示当前的进程id号 ghostwu@dev:~/linux/shell/how_to_use_var$ cat show_pid.sh #!/bin/bash echo $$ ghostw ...
- linux shell脚本之-变量极速入门与进阶(1)
1,如果创建shell脚本? 使用任意文本编辑软件,一般为vim,创建.sh结尾的文件,在文件的最开头用 #!/bin/bash 注明shell的类型 如: ghostwu@dev:~/linux/s ...
- Linux Shell脚本编程while语句
Linux Shell脚本编程while语句案例 1,每隔3秒,打印一次系统负载 #!/bin/bash while truedo uptime sleep 3done 2,把监控结果保存 ...
- Linux Shell 文本处理工具集锦--Awk―sed―cut(row-based, column-based),find、grep、xargs、sort、uniq、tr、cut、paste、wc
本文将介绍Linux下使用Shell处理文本时最常用的工具:find.grep.xargs.sort.uniq.tr.cut.paste.wc.sed.awk:提供的例子和参数都是最常用和最为实用的: ...
- Linux shell tr 命令详解
该随笔摘自 https://www.jb51.net/article/103892.htm Linux shell tr 命令详解 1. 用途 tr,translate的简写,主要用于压缩重复字符,删 ...
- linux shell的here document用法(cat << EOF)
什么是Here Document?Here Document 是在Linux Shell 中的一种特殊的重定向方式,它的基本的形式如下cmd << delimiter Here Docu ...
- (转)linux shell 的here document 用法 (cat << EOF)
什么是Here Documen: Here Document 是在Linux Shell 中的一种特殊的重定向方式,它的基本的形式如下 cmd << delimiter Here Docu ...
- Linux SHELL 命令入门题目答案(一)
1.如何使用shell 打印 “Hello World!” (1)如果你希望打印 !,那就不要将其放入双引号中,或者你可以通过转义字符转义(2)echo 'hello world!' 使用单引号ech ...
随机推荐
- 引入js和css文件的总结
1.用script标签引入javascript时,浏览器对于javascript的加载某些是并行的,某些是串行的,如IE8,Chorme2和firefox3都是串行加载的. 2.charset编码也就 ...
- 与众不同 windows phone (50) - 8.1 新增控件: PickerFlyout, ListPickerFlyout
[源码下载] 与众不同 windows phone (50) - 8.1 新增控件: PickerFlyout, ListPickerFlyout 作者:webabcd 介绍与众不同 windows ...
- SpringMvc+Mybatis 框架搭建
本文承接上一篇[idea使用maven搭建springmvc] 开篇:在main/resources下新建dbconfig.properties.spring.xml.spring-mybatis.x ...
- C# on Visual Studio Code
installation Download .NET Core SDK installer and install it. https://www.microsoft.com/net/download ...
- linux系统如何将系统中的文件名改为英文?
由于我们经常在命令行模式下进入文件,那么中英文的切换常常会影响我们输入的效率. 那么如何将原来的中文修改成英文的字幕呢? 如下图所示: -------------------------------- ...
- ahjesus sql手动重新更新ID
declare cus_cursor cursor scroll for SELECT Id from [dbo].[TLotterySpiderRule] open cus_cursor decla ...
- JS创建对象、继承原型、ES6中class继承
面向对象编程:java中对象的两个基本概念:1.类:类是对象的模板,比如说Leader 这个是泛称领导,并不特指谁.2:实例:实例是根据类创建的对象,根据类Leader可以创建出很多实例:liyi,y ...
- 初学Node(四)事件循环
Node中的事件循环 事件循环是Node的核心,正是因为有了事件循环JS才能够在服务端占有一席之地.JS是一种单线程语言,但是它的执行环境是多线程的在加上JS的事件驱动这一特点,使使JS在执行的过程中 ...
- ALV用例大全
一.ALV介绍 The ALV Grid Control (ALV = SAP List Viewer)是一个显示列表的灵活的工具,它提供了基本功能的列表操作,也可以通过自定义来进行增强,因此可以允 ...
- .NET破解之百度网盘批量转存工具
在百度网盘上看到好的资源,总想转存到自己的网盘,加以整理.由于分享的规则原因,手动转存非常麻烦,于是百度批量转存工具.最先搜到的是小兵的百度云转存助手,无需注册,试用版用户一次只能操作10个,而捐助用 ...