Think about some situations when you need to change strings in text files in your Linux hosts.

Depending on the case, you will simply change the file directly in your favorite text editor.

[ Check out this article comparing various text editors. ]

But what if there are too many files? Too many changes? And on top of that, you want a more automated method to perform this task precisely, in a way that is also repeatable and somehow self-documented.

Got your attention? OK, I'll elaborate.

Things to consider before making any changes

If you are using an integrated development environment (IDE), you probably already have a function for global search and replace in multiple files. In this case, you would have the option to confirm, case by case, which occurrence to replace (unless you are pretty sure that you really want to replace all).

Think of the following examples as methods to perform these types of changes using only the command line instead of an IDE.

But you may also want to inspect the changes before applying them because—different from the IDE option—the command-line method is more immediate (no confirmation is asked, by default).

In my example scenario, I have three files that contain references to variables user_name and user_home, which for some good reason I must change to admin_name and admin_home.

Before making any changes, I inspect the occurrences in the current directory:

The grep user_ command

Hmm. I can see the string user_ in the files playbook.yml and vars.yml, but there is also a directory. I can use the following command to include that in the search:

Use find, grep, xargs to display results

Note: As the combination of find and xargs grep does not highlight the string user_ like in the first example, I added an extra grep command to highlight the string.

In other scenarios, you may have to use regular expressions more elaborate than the example above to catch strings preceded by a comment (#) followed by zero or more spaces or a mix of upper and lower case. Yes, regular expressions can get complex.

Following are two ways you can change strings in multiple files simultaneously.

1. Change strings in files in the same directory

If I only wanted to change the strings in the files in the present directory, I could use:

sed -i 's/user_/admin_/g' *.yml

Here, I used the sed command with the -i argument to make the changes in place. The /g at the end of the parameter means replace all occurrences in each file.

2. Change strings in files in the current and subdirectories

In my example scenario, there are files in subdirectories that also need to be changed. For that, I use the find command again:

find ./ -type f | xargs sed -i 's/user_/admin_/g'

In this case, I use the find command with the parameter -type f to return only files and not directory names. The xargs command will receive each file name returned by the find command and apply the sed command.

[ Download now: A system administrator's guide to IT automation. ]

Wrap up

If you know exactly what you need to change, and you are dealing with a string that is safe to be replaced by another, you can speed up the process by using the commands shown here.

Be extra careful with strings that may be common in your files: If you apply a global change that affects more than what you intended, you may have to revert to your backup copies (which you certainly have, right?).


关于作者

Roberto Nozaki (RHCSA/RHCE/RHCA) is an Automation Principal Consultant at Red Hat Canada where he specializes in IT automation with Ansible. He has experience in the financial, retail, and telecommunications sectors, having performed different roles in his career, from programming in mainframe environments to delivering IBM/Tivoli and Netcool products as a pre-sales and post-sales consultant.

Roberto has been a computer and software programming enthusiast for over 35 years. He is currently interested in hacking what he considers to be the ultimate hardware and software: our bodies and our minds.

Roberto lives in Toronto, and when he is not studying and working with Linux and Ansible, he likes to meditate, play the electric guitar, and research neuroscience, altered states of consciousness, biohacking, and spirituality.

UI_Icon-Red_Hat-Close-A-Black-RGB

按频道浏览

automation icon

自动化

有关技术、团队和环境 IT 自动化的最新信息

AI icon

人工智能

平台更新使客户可以在任何地方运行人工智能工作负载

open hybrid cloud icon

开放混合云

了解我们如何利用混合云构建更灵活的未来

security icon

安全防护

有关我们如何跨环境和技术减少风险的最新信息

edge icon

边缘计算

简化边缘运维的平台更新

Infrastructure icon

基础架构

全球领先企业 Linux 平台的最新动态

application development icon

应用领域

我们针对最严峻的应用挑战的解决方案

Virtualization icon

虚拟化

适用于您的本地或跨云工作负载的企业虚拟化的未来