访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux命令总结之tr命令

时间:2019-08-11

linux命令_linux命令_linux重启命令

转载地址,做了部分补充。谢谢原作者。

[tr?ns?leit]

vi.翻译, 能被译出

vt.翻译, 解释, 转化, 转变为, 调动

在这里用到的意思是转化,转变,转换,在linux下输入tr --help查看一下提示:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

amosli@amosli-pc:~$tr--help

Usage:tr[OPTION]... SET1 [SET2]

Translate, squeeze, and/ordelete characters from standard input,

writing to standard output.

-c, -C, --complement use the complement of SET1

-d, --delete delete charactersinSET1,donot translate

-s, --squeeze-repeats replace each input sequence of a repeated character

that is listedinSET1 with a single occurrence

of that character

linux命令_linux重启命令_linux命令

-t, --truncate-set1 first truncate SET1 to length of SET2

--help display this help andexit

--version output version information andexit

SETs are specified asstringsof characters. Most represent themselves.

Interpreted sequences are:

\NNN character with octal value NNN (1 to 3 octal digits)

\\ backslash

\a audible BEL

\b backspace

\f form feed

\n new line

\rreturn

\t horizontal tab

\vvertical tab

CHAR1-CHAR2 all characters from CHAR1 to CHAR2inascending order

[CHAR*]inSET2, copies of CHARuntillength of SET1

[CHAR*REPEAT] REPEAT copies of CHAR, REPEAT octalifstarting with 0

[:alnum:] all letters and digits

[:alpha:] all letters

[:blank:] all horizontal whitespace

[:cntrl:] all control characters

[:digit:] all digits

[:graph:] all printable characters, not including space

[:lower:] all lowercaseletters

print all the element (key) in the list after the given operations. two consequtive keys should be separated by a single space.。replace unsafe characters with their escape sequences. unsafe characters are those characters that may be altered during transport across the internet, and include the (<, >, ", #, {, }, |, \, ^, ~, [, ], and ') characters. this flag applies to all urls, including opaque urls.。replace unsafe characters with their escape sequences. unsafe characters are those characters that may be altered during transport across the internet, and include the (<, >, ", #, {, }, |, \, ^, [, ], and ') characters. this flag applies to all urls, including opaque urls.。

 上一个教程:Linux命令:install