我想从一个文件中搜索以下段落,然后从段落中显示一个特定的单词。例如:
"Documentation can be done using
MS excel and an eg. of such a file is sample.xls"
我想从文件example.log中搜索上面的段落,然后只显示单词"sample.xls“。
有可能吗??
如何输入脚本的内容,以便在运行时将“我应该学习”的单词显示在stdout中?
这是我最好的尝试:
#!/bin/bash
$ echo "I should have studied" | grep studied
我知道第一个语句对于shell执行我的命令是必要的。在第二个命令中,我使用echo打印它,然后重定向该命令的管道操作符,使其成为我的另一个命令的输入。我还使用“grep”查找列表中包含字符串目录的任何行,并将这些行发送到标准输出。我有什么进展吗?
我试图在一个故事中找到一个特定的单词"und“,但这个单词后面不能有e,下面是一个例子:
Under the rope she went. Going under the rope she ran towards the abandoned
house and and went around it to find her sister.
She bound over a fallen tree while running around the house, and it was there she found her sister.
She now understood wher
我正在处理一个大型Java项目,重写了许多适应新数据模式的类。为此,我需要所有类的每个方法的所有引用的映射表示,以便查看必须完成的更改级别。我知道如何使用References->Project逐一完成此操作,但我应该如何继续获取一个类的所有方法的所有引用的列表?
一个文本列表就足够了,比如:
Class myClass->GetSomething()
--file1.java line 232
--file2.java line 587
Class myClass->GetSomethingMore()
--file5.java line 2
如何将一个文件中的所有单词提供给tr,用于搜索和删除另一个文件中的文本?
例如,我有一个文件vocabulary.txt和loveStroty.txt。我正在试着删除“爱情故事”中的所有词汇。
$ voc="one free" #files look like this strings
$ love="one two free four"
$ tr "$voc" '' <<< $love
输出示例(不管是分隔符还是换行符):
two
four