Introduction
In this project, you will learn how to extract link information from Markdown documents using a Bash script. This is a common task in software development, where developers need to process and extract specific information from text-based documents.
ð Preview
$ ./getlink.sh labex_lab1.md
course https://labex.io/courses/
ðŊ Tasks
In this project, you will learn:
- How to create a Bash script to extract link text and URLs from a Markdown document
- How to use regular expressions and command-line tools like
grep
andpaste
to process text data - How to make a script executable and run it with command-line arguments
ð Achievements
After completing this project, you will be able to:
- Develop a Bash script that can extract link information from Markdown documents
- Understand the logic and implementation of the script, including the use of regular expressions and common command-line tools
- Apply the skills learned in this project to other text processing tasks in your software development work