mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
chore(kb/comm): add real-world example
This commit is contained in:
@@ -10,14 +10,15 @@ With no options, produces 3 columns in output:
|
|||||||
|
|
||||||
Comparisons honor the rules specified by 'LC_COLLATE'.
|
Comparisons honor the rules specified by 'LC_COLLATE'.
|
||||||
|
|
||||||
## Table of contents <!-- omit in toc -->
|
|
||||||
|
|
||||||
1. [TL;DR](#tldr)
|
1. [TL;DR](#tldr)
|
||||||
1. [Further readings](#further-readings)
|
1. [Further readings](#further-readings)
|
||||||
1. [Sources](#sources)
|
1. [Sources](#sources)
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Usage</summary>
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
# Print only lines present in both file1 and file2.
|
# Print only lines present in both file1 and file2.
|
||||||
comm -12 'path/to/pre-sorted/file1' 'path/to/pre-sorted/file2'
|
comm -12 'path/to/pre-sorted/file1' 'path/to/pre-sorted/file2'
|
||||||
@@ -31,6 +32,23 @@ test $(comm -23 'path/to/pre-sorted/file1' <(sort -u 'path/to/file2') | wc -l) -
|
|||||||
[[ $(comm -23 <(sort -u 'path/to/file1') 'path/to/pre-sorted/file2' | wc -l) -eq 0 ]]
|
[[ $(comm -23 <(sort -u 'path/to/file1') 'path/to/pre-sorted/file2' | wc -l) -eq 0 ]]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Real world use cases</summary>
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# List security groups not used by EC2 instances in AWS.
|
||||||
|
comm -23 \
|
||||||
|
<( aws ec2 describe-security-groups --query 'SecurityGroups[*].GroupId' --output 'text' | tr '\t' '\n' | sort ) \
|
||||||
|
<( \
|
||||||
|
aws ec2 describe-instances --query 'Reservations[*].Instances[*].SecurityGroups[*].GroupId' --output 'text' \
|
||||||
|
| tr '\t' '\n' | sort | uniq \
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
## Further readings
|
## Further readings
|
||||||
|
|
||||||
- [`cmp`][cmp]
|
- [`cmp`][cmp]
|
||||||
@@ -44,7 +62,8 @@ All the references in the [further readings] section, plus the following:
|
|||||||
- [6 more terminal commands you should know]
|
- [6 more terminal commands you should know]
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
References
|
Reference
|
||||||
|
═╬═Time══
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- In-article sections -->
|
<!-- In-article sections -->
|
||||||
|
|||||||
Reference in New Issue
Block a user