Tips for organizing strings in Linux

Tips for organizing strings in Linux

In Linux operations, we often replace and count strings in files. Let's do a summary now. If there are any mistakes, please criticize and correct them.

Count the number of strings

grep -c str filename
grep -o str filename |wc -l

Replace String

Replace the current line with the matching string

:s/oldStr/newStr

Replace all matches in the current file

:%s/original string/replacement string/gg

Batch replace string

sed -i "s/search field/replace field/g" grep search field-rl path

-rl means all subdirectories

sed -i "s/new Str/old Str/g" 'grep "old Str" -rl filename'

PS: Linux commonly used string operation commands

Split string by space

awk '{print $1}'

Split a string at specific characters

str=${str//,/ } ——————–//后面是分割字符串的標志符號,最后一個/后面還有一個空格

Cutting a string

cut -b|-c|-f 3 ———————–b代表字節,-c代表字符,-f代表域后面的數組是第幾個字符

Remove specific characters from a string

sed 's/\”//g' s代表替換,默認字符被替換為空,\后面的字符是要被替換的字符,g表示全部替換

Summarize

The above is the relevant operation skills for organizing strings in Linux introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Linux special characters and their functions
  • How to change the character set encoding to UTF8 in MySQL 5.5/5.6 under Linux
  • Linux C string replacement function example detailed explanation
  • How to concatenate strings in Linux shell script
  • Linux kernel device driver virtual file system notes
  • Linux kernel device driver system call notes
  • Linux kernel device driver kernel debugging technical notes collation
  • Linux kernel device driver kernel linked list usage notes
  • Linux kernel device driver proc file system notes
  • Linux kernel device driver advanced character device driver notes
  • Linux kernel device driver Linux kernel module loading mechanism notes summary
  • Linux kernel device driver address mapping notes
  • Linux kernel device driver Linux kernel basic notes summary
  • Linux kernel device driver character device driver notes

<<:  MySQL uses init-connect to increase the implementation of access audit function

>>:  Vue project configures webpack-obfuscator to implement code encryption and obfuscation

Recommend

Tutorial on installing Ubuntu 20.04 and NVIDIA drivers

Install Ubuntu 20.04 Install NVIDIA drivers Confi...

js method to delete a field in an object

This article mainly introduces the implementation...

Index Skip Scan in MySQL 8.0

Preface MySQL 8.0.13 began to support index skip ...

MySQL database must know sql statements (enhanced version)

This is an enhanced version. The questions and SQ...

Centos7 installation of Nginx integrated Lua sample code

Preface The computer I use is a Mac, and the oper...

Solution to the problem that docker nginx cannot be accessed after running

## 1 I'm learning docker deployment recently,...

An article to show you how to create and use Vue components

Table of contents 1. What is a component? 2. Crea...

Detailed tutorial on installing the jenkins container in a docker environment

Recommended Docker learning materials: https://ww...

Common Linux English Error Chinese Translation (Newbies Must Know)

1.command not found command not found 2. No such ...

Use of MySQL truncate table statement

The Truncate table statement is used to delete/tr...

Detailed tutorial for installing MySQL 8.0.11 compressed version under win10

After reinstalling my computer recently, I downlo...

Understanding and usage scenarios of ES6 extension operators

Table of contents 1. Replace the apply method, ge...