Command Magicks:如何使用控制台处理文件和字符串

by Luciano Strika

通过卢西亚诺·斯特里卡(Luciano Strika)

Command Magicks:如何使用控制台处理文件和字符串 (Command Magicks: How to Manipulate Files and Strings with the Console)

As developers, there are lots of repetitive things we do every day that take away our precious time. Finding ways to automate and optimize those processes is usually very lucrative.

作为开发人员,我们每天都会做很多重复的事情,这会浪费我们宝贵的时间。 寻找使这些过程自动化和优化的方法通常非常有利可图。

Many times we find ourselves sifting through a program’s output looking for the relevant bits and manually moving them into a different file, changing all the capital letters from a sentence into lowercase, or removing all non-numerical characters from a file. The kind of boring, repetitive and error-prone tasks that can pile up if we do them by hand, and turn into a big headache.

很多时候,我们发现自己在程序的输出中进行筛选以寻找相关的位,然后将它们手动移到另一个文件中,将句子中的所有大写字母更改为小写,或从文件中删除所有非数字字符。 如果我们手工完成这些繁琐的,重复性的且容易出错的任务,这些任务会变得很头疼。

It’s conventional wisdom that we should do these things programmatically not manually. Many times the problem falls into this sweet spot where coding a whole script for it, even in Python, feels like overkill. Doing the thing by hand will take too long or generate too many errors.

按照惯例,我们应该以编程方式而不是手动方式执行这些操作。 很多时候问题都落在这个甜蜜的地方,即使用Python编写整个脚本,也感觉有些过头了。 用手做事情会花费太长时间或产生太多错误。

Luckily, many of those tasks have already been coded by people way smarter than we are. They can be accessed with just a few key presses. They are all available as shell commands, and I’ll show you some of them today. If you’re completely new to the terminal and have no idea how to navigate your file system or do similar tasks, I suggest you read my previous introduction to the terminal.

幸运的是,其中许多任务已经被人们以比我们聪明的方式进行了编码。 只需按几下即可访问它们。 它们都可以作为shell命令使用,今天我将向您展示其中的一些。 如果您不熟悉终端设备,又不知道如何导航文件系统或执行类似的任务,建议您阅读以前对终端设备的介绍 。

So without further ado, let me introduce you to the most useful spells any coding wizard should know.

因此,事不宜迟,让我向您介绍任何编码向导都应该知道的最有用的法术。

echo:使字符串出现在控制台中 (echo: Make a string appear in the console)

Before we can dive into the arts of divination and transformation, a real programming wizard must dominate the craft of conjuration.The echo command, followed by a string, will simply make the console output what was given as input. For instance, running the following line:

在我们深入研究除法和变换的技巧之前,必须先使用真正的编程向导来控制变魔术。echo命令后跟一个字符串,将使控制台输出简单地作为输入。 例如,运行以下行:

echo “hello world!”

will produce the following output:

将产生以下输出:

hello world!

This may seem trivial right now, but I promise it will be useful in the future.

现在这似乎微不足道,但我保证将来会有用。

cat:显示输入的真实格式 (cat: Showing the input’s true form)

Calling the cat command on a file will output its contents into the terminal.For instance, we have a directory containing the files ‘file1.txt’ and ‘file2.txt’. Both files contain the text ‘this is a file’. Calling:

在文件上调用cat命令会将其内容输出到终端中,例如,我们有一个包含文件'file1.txt'和'file2.txt'的目录。 两个文件都包含文本“这是一个文件”。 致电:

cat file1.txt

will output the file’s contents:

将输出文件的内容:

this is a file

Note that the argument for the cat command can be any shell style name. We can use the wildcard character *, to match any string. This way, we could output different files’ contents one after another, like this:

请注意,cat命令的参数可以是任何外壳样式名称。 我们可以使用通配符*来匹配任何字符串。 这样,我们可以一个接一个地输出不同文件的内容,如下所示:

cat *.txt

In this case, * matches both file1 and file2, and they both end in .txt, so they’re both printed. That command’s output would be

在这种情况下,*匹配file1和file2,并且都以.txt结尾,因此都被打印出来。 该命令的输出将是

this is a filethis is a file

Remember this command — no warlock is really complete without a kitten.

请记住此命令-没有小猫,没有术士真的是完整的。

grep:大海捞针 (grep: finding a needle in a haystack)

Switching to divination, grep is the spell for finding a substring in a string. Calling

切换到占卜,grep是在字符串中找到子字符串的咒语。 呼唤

grep <some string> filename

will output every line of the specified file where the given string appears.

将输出指定文件出现给定字符串的每一行。

If we wish for it to appear not only in its exact form but also with different casing, we must pass the -i argument, to ignore casing.

如果我们希望它不仅以确切的形式出现而且以不同的大小写形式出现,则必须传递-i参数以忽略大小写。

If we call it on different files in a single command, we will get a list of every file with lines matching the pattern. For instance in the previous directory, calling

如果在单个命令中在不同文件上调用它,我们将获得每个文件的列表,其中的行与模式匹配。 例如在上一个目录中,调用

grep “this” *.txt

will yield

将产生

file1.txt: this is a filetile2.txt: this is a file

sed:将字符串转换为另一个 (sed: transforming a string into another)

The sed command is a transmutation spell. It takes a file’s contents and turns them into different ones. There are many ways of using it. Some of which I confess to knowing little of. (If you’re reading this and think of some cool things sed does that I am not mentioning, please tell me in the comments, as I love to learn new tricks). One of the most common ones is replacing the parts of a string that match a pattern, with different strings.

sed命令是一个spell变法术。 它获取文件的内容并将其转换为不同的内容。 有很多使用方法。 我承认其中一些知识很少。 (如果您正在阅读此书,并且想到了sed确实没有提到的一些很棒的事情,请在评论中告诉我,因为我喜欢学习新的花样)。 最常见的一种方法是用不同的字符串替换与模式匹配的字符串部分。

This is done by calling

这是通过调用

sed “s/regexp/replacement/optional_flags” file_name

What this will do is:

这将是:

  • Look for every line that matches the regexp in the file_name file

    在file_name文件中查找与regexp匹配的每一行
  • Replace that line’s first regexp instance with replacement

    更换内容替换该行的第一个正则表达式实例

  • Output the resulting string into the console (without altering the file!).

    将结果字符串输出到控制台(无需更改文件!)。

If we supply the g flag at the end (like this s/old/new/g) it will match all instances on each line, instead of just the first one. Using the -i argument (for in-place) will actually write into the input file.

如果我们在末尾提供g标志(例如s / old / new / g),它将匹配每行的所有实例,而不仅仅是第一个。 使用-i参数(就地使用)实际上将写入输入文件。

As an example, calling

举例来说,

sed “s/is/was/g” file1.txt

will output

将输出

thwas was a file

If we want only to match entire words, we must put the \b character surrounding the regexp, like this

如果我们只想匹配整个单词,则必须将\ b字符放在正则表达式的周围,如下所示

sed “s/\bis\b/was/g” file1.txt

to finally get

最终得到

this was a file

结合我们的咒语:运算符 (Combining our spells: The Operators)

Now you’re proficient in four new schools of magic, each one with its characteristic spell. But to become a real wizard, you must learn to tie the threads of magic into awesome patterns. To do this, you will use three powerful tools.

现在,您已经精通了四门新的魔术学,每门都有其独特的法术。 但是,要成为一名真正的巫师,您必须学习将魔术的线绑入令人敬畏的模式。 为此,您将使用三个强大的工具。

| (管道)运算符 (| (Pipe) Operator)

The pipe operator takes the previous command’s output, and writes it into the following command’s input, creating a pipeline.For instance, calling

管道运算符获取上一条命令的输出,并将其写入到下一条命令的输入中,以创建管道。

cat *.txt | grep “is”

will first fetch the contents for all text files in the current working directory. Then look for every line that contains the string “is”, before finally printing them.

首先将获取当前工作目录中所有文本文件的内容。 然后,在最终打印它们之前,先查找包含字符串“ is”的每一行。

>(写)运算符 (> (write) Operator)

The write operator will write its input into its output — usually a file.

写操作符会将其输入写入输出中-通常是一个文件。

So for instance, a quick way of creating a text file with ‘this is a file’ as its contents, would be calling

因此,例如,一种以“这是一个文件”作为内容创建文本文件的快速方法是调用

echo “this is a file” > some_file.txt

See how that whole conjuring spell thing actually adds up? I told you it would be useful.

看到整个魔术咒语实际上是如何叠加的? 我告诉你这将是有用的。

Note that if the file already existed, this will overwrite its contents, without even asking. In case that’s not what we wanted, we must use our last tool:

请注意,如果文件已经存在,这将覆盖其内容,甚至不会询问。 如果这不是我们想要的,则必须使用最后一个工具:

>>(附加)运算符 (>> (append) Operator)

The >> operator will write its input into its output, except it won’t overwrite whatever’s already in it.

>>运算符会将其输入写入输出,除非它不会覆盖其中已有的内容。

That’s it, we’re through with this tutorial and you’re now a wizard’s apprentice. Go practice your new spellcasting skills, and you can thank me later. Do remember to check the man pages for all these commands if you get stuck or don’t remember what some flags did — a wizard’s never away from his books.

就是这样,我们已经完成了本教程,您现在是向导的学徒。 去练习您的新的施法技巧,稍后您可以感谢我。 如果您被卡住或不记得某些标志的作用,请记住检查所有这些命令的手册页-向导永远不会离开他的书。

Please consider supporting my writing habit with a small donation.

请考虑通过少量捐款来支持我的写作习惯 。

Follow me on Medium for more tutorials, tips and tricks. This article was also posted on datastuff.tech, my new website. Check it out!

在“ Medium”上关注我,以获取更多教程,技巧和窍门。 本文还发布在我的新网站datastuff.tech上。 看看这个!

翻译自: https://www.freecodecamp.org/news/command-magicks-how-to-manipulate-files-and-strings-with-the-console-3c554e64048/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/393703.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

dreamweaver后缀名_让 Dreamweaver 8 支持其它扩展名的方法

有的时候&#xff0c;我们为了网站的安全考虑&#xff0c;常常会修改网站的扩展名&#xff0c;如我看到有些网站的扩展名为 *.do&#xff0c;很明显这个扩展名是有意改掉的&#xff0c;可是改了这扩展名对于我们修改网页来说就麻烦了&#xff0c;比如用 Dreamweaver 8 来修改的…

sublime 3143 注册码

请大家支持购买正版&#xff0c;或者使用Atom、Vimsublime 3143版本的注册码&#xff1a;—– BEGIN LICENSE —– TwitterInc 200 User License EA7E-890007 1D77F72E 390CDD93 4DCBA022 FAF60790 61AA12C0 A37081C5 D0316412 4584D136 94D7F7D4 95BC8C1C 527DA828 560B…

【BZOJ1857】【SCOI2010】传送带 [三分]

传送带 Time Limit: 1 Sec Memory Limit: 64 MB[Submit][Status][Discuss]Description 在一个2维平面上有两条传送带&#xff0c;每一条传送带可以看成是一条线段。两条传送带分别为线段AB和线段CD。lxhgww在AB上的移动速度为P&#xff0c;在CD上的移动速度为Q&#xff0c;在平…

google android广告异步加载,谷歌广告异步代码和同步代码的解决方法

通常大部分人初次接触谷歌google adsense广告联盟都会有疑问&#xff0c;在新建单元界面我们可以看到获取代码类型选项。下面是学习啦小编为大家整理的关于谷歌广告异步代码和同步代码的解决方法&#xff0c;一起来看看吧!谷歌广告异步代码和同步代码的解决方法选择同步还是异步…

openssl 加密解密 指令_Shell openssl命令加密解密字符串

Linux下的 openssl 命令解密我们以在线加密网站为例 http://tool.chacuo.net/cryptdes我们选择des cbc模式&#xff0c;密钥为abcdefgh&#xff0c; 偏移量为12345678&#xff0c;以base64输出结果 对hello进行加密&#xff0c;得到结果8Snw/EmQdY我们再用将在线网站改用shell命…

使用Docker 安装Elasticsearch、Elasticsearch-head、IK分词器 和使用

使用Docker 安装Elasticsearch、Elasticsearch-head、IK分词器 和使用 原文:使用Docker 安装Elasticsearch、Elasticsearch-head、IK分词器 和使用Elasticsearch的安装 一、elasticsearch的安装 1.镜像拉取 docker pull elasticsearch:tag2.启动 docker run -it -e "disc…

Spring 的持久化实例(JDBC, JdbcTemplate、HibernateDaoSupport、JdbcDaoSupport、SqlSessionDaoSupport等)...

2019独角兽企业重金招聘Python工程师标准>>> 一、表&#xff08;这里用mysql&#xff0c;数据库名为yiibai&#xff09; CREATE TABLE customer (CUST_ID int(10) UNSIGNED NOT NULL,NAME varchar(100) NOT NULL,AGE int(10) UNSIGNED NOT NULL ) ENGINEInnoDB DEFA…

开始使用gradle

前提配置gradle环境 每个gradle构建都是以一个脚本开始的。gradle构建默认的名称为build.gradle。当在shell中执行gradle命令时&#xff0c;gradle会去寻找为build.gradle文件&#xff0c;如果找不到就会显示帮助信息。 下面我们以经典的helloworld为例。 1、首先建立一个build…

freecodecamp_freeCodeCamp的新编码课程现已上线,其中包含1,400个编码课程和6个开发人员认证

freecodecampFor the past year, our community has been hard at work on a massive new programming curriculum. And now that curriculum is live and out of beta!在过去的一年中&#xff0c;我们的社区一直在努力编写大量的新编程课程。 现在&#xff0c;该课程已上线并且…

麦克劳林展开式_数学家麦克劳林与牛顿的故事

数学家麦克劳林麦克劳林(Colin Maclaurin1698年2月-1746年6月), 苏格兰数学家&#xff0c;麦克劳林是18世纪英国最具有影响的数学家之一。01麦克劳林是一位牧师的儿子&#xff0c;半岁丧父&#xff0c;9岁丧母。由其叔父抚养成人。叔父也是一位牧师。麦克劳林是一个“神童”&am…

html隐藏层点击显示不出来,[js+css]点击隐藏层,点击另外层不能隐藏原层

1货币转换&#xff0c;下图显示了这个程序子只进行简单的 把元素放在下面的目录下&#xff0c;在创币转换应用程序这个例 所需的界面&#xff0c;包括一些UI组件实例(Button, ComboB 货币转换&#xff0c;下图显示了这个程序组件实例(Button, ComboB 货币转换&#xff0c;下图显…

Oracle 10.2.0.5 非归档current redolog损坏处理一例

操作系统: RHEL5.8 x64数据库 : Oracle 10.2.0.5.0故障情况:一台单机曙光PC服务器4块300G SAS盘&#xff0c;RAID5坏两块磁盘&#xff08;服务器面板无故障提示&#xff0c;无人发现&#xff09;&#xff0c;造成RAID5磁盘阵列挂掉&#xff0c;操作系统当机&#xff0c;系统无…

基础命令

date --help date %T 15:04:58 whatis date date (1) - print or set the system date and timeman date 获取详细的命令解释cd ~/wntlab //新建文件夹 mkdir example //新建文件 touch b c //复制文本内容 cp b c//把 b的内容复制给 c cp b a/ //把 文件b复制…

微信小程序把玩(三十三)Record API

微信小程序把玩&#xff08;三十三&#xff09;Record API 原文:微信小程序把玩&#xff08;三十三&#xff09;Record API其实这个API也挺奇葩的&#xff0c;录音结束后success不走&#xff0c;complete不走&#xff0c;fail也不走&#xff0c; 不知道是不是因为电脑测试的原因…

leetcode336. 回文对(字典树)

给定一组 互不相同 的单词&#xff0c; 找出所有不同 的索引对(i, j)&#xff0c;使得列表中的两个单词&#xff0c; words[i] words[j] &#xff0c;可拼接成回文串。 示例 1&#xff1a; 输入&#xff1a;[“abcd”,“dcba”,“lls”,“s”,“sssll”] 输出&#xff1a;[[…

html文档 字符引用,【转】HTML中常见形如#number;的东西叫做 字符实体引用,简称引用,代表一个对应的unicode字符...

【转】HTML中常见形如number;的东西叫做 字符实体引用&#xff0c;简称引用&#xff0c;代表一个对应的unicode字符英文解释的很清楚&#xff0c;就不翻译了&#xff0c;自己看&#xff1a;EntitiesCharacter entity references, or entities for short, provide a method of e…

终端打开后-bash_如何爵士化Bash终端-带有图片的分步指南

终端打开后-bashby rajaraodv通过rajaraodv In this blog I’ll go over the steps to add Themes, Powerline, fonts, and powerline-gitstatus to make your regular Bash Terminal look beautiful and useful as shown in the picture above.在此博客中&#xff0c;我将介绍…

如何获取元素在父级div里的位置_关于元素的浮动你了解多少

首先&#xff0c;在介绍什么是浮动之前我们先介绍一下html中元素的普通流布局方式。在普通流中&#xff0c;元素是按照它在 HTML 中的出现的先后顺序自上而下依次排列布局的&#xff0c;在排列过程中所有的行内元素水平排列&#xff0c;直到当行被占满然后换行&#xff0c;块级…

获取iOS顶部状态栏和Navigation的高度

状态栏的高度 20 [[UIApplication sharedApplication] statusBarFrame].size.height Navigation的高度 44 self.navigationController.navigationBar.frame.size.height 加起来一共是64 转载于:https://www.cnblogs.com/Free-Thinker/p/6478715.html

Java电商项目-5.内容管理cms系统

目录 实现加载内容分类树功能实现内容分类动态添加删除内容分类节点实现内容分类节点的分页显示实现广告内容的添加实现广告内容删除实现广告内容编辑到Github获取源码请点击此处实现加载内容分类树功能 注: 往后将不在说编写远程服务方法和编写web模块等重复语句, 直接用"…