The command used to get your data : curl "https://americanliterature.com/author/oscar-wilde/poem/the-disciple" -0 data.txt
The comand which is used to sort the data is : tr ' ' '\12' < data.txt | sort | uniq -c | sort -nr
Data-file
Result-file
- creates a new directory
mkdir
- deletes the specified empty directory
rmdir
- deletes a specified directory containing files
rm
- shows the current working directory
pwd
- displays the contents of file
cat
- Heading - To create a heading, add number signs (#) in front of a word or phrase. The number of number signs you use should correspond to the heading level.
# H1 - Heading level 1
## H2 - Heading level 2
### H3 - Heading level 3
#### H4 - Heading level 4
- Bold - To bold text, add two asterisks or underscores before and after a word or phrase. To bold the middle of a word for emphasis, add two asterisks without spaces around the letters.
**bold text**
- italicized text - To italicize text, add one asterisk or underscore before and after a word or phrase.
*italicized text*
-
Blockqoutes -To create a blockquote, add a > in front of a paragraph.
> Sample text here.
- Ordered Lists - To create an ordered list, add line items with numbers followed by periods. The numbers don’t have to be in numerical order, but the list should start with the number one.
1. First item
2. Second item
3. Third item
4. Fourth item
- Unordered Lists - To create an unordered list, add dashes (-), asterisks (*), or plus signs (+) in front of line items. Indent one or more items to create a nested list.
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item