Extracting Link Information From Text

# 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 ```bash $ ./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` and `paste` 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

|60 : 00

Click the virtual machine below to start practicing