Simple web scraping with Bash
Ski Report
With one line of Bash code, Pete scrapes the web and builds a desktop notification app to get the daily snow report.
While recently doing a small project, I was amazed by how much web scraping I could do with just one line of Bash. I used the text-based Lynx browser [1] and then piped the output to a grep
search. Figure 1 shows the one-line Bash example that scrapes the current snow depth from the Sunshine Village Snow Forecast web page.
In this article, I will introduce some techniques to easily scrape web pages, and then I will create a desktop notification script that provides the daily snow forecast.
The Lynx Text Browser
For my Bash web scraping, I started out by looking at using command-line tools such as curl
[2] with the html2text
[3] utility. This technique definitely works, but I found that using the Lynx browser offers a one-step solution with a slightly cleaner text output.
To install Lynx on Raspian/Debian/Ubuntu, use:
sudo apt install lynx
The Lynx -dump
option will output a web page to text with HTML tags, HTML encoding, and JavaScript removed. Figure 2 shows that a Lynx dump can greatly clean up the original web page and make searching considerably easier.
Sometimes a simple Bash grep
search might be all that you need. However, there are many cases where some text manipulation is required. The good news is that Bash has a nice selection of line and string manipulation tools.
The example shown in Figure 3 uses line manipulation to find the current weather in Key West, Florida. A grep
search is done on the string "As of", and the option -A 3
is used to return the requested line of data with an additional three lines. You can remove the "As of" line with the tail
command if required.
It's important to note that what you see on a web page may not match the Lynx outputted text, and some trial and error testing might be required.
Figure 4 uses string manipulation to find the new snow at Sunshine Ski Resort. The resort's web page uses JavaScript to show the new snow in either centimeters or inches, but the Lynx text output displays both values and their units.
To remove parts of a string variable, you can use %%
to extract the first part of the string and #
to extract the last part of the string (as shown in Listing 1).
Listing 1
Extracting Parts of a String
01 $ newsnow="5.2cm2.0" 02 $ # get the part before 'cm' 03 $ echo "${newsnow%%cm*}" 04 5.2 05 $ # get the part after 'cm' 06 $ echo "${newsnow#*cm}" 07 2.0
A Bash Web Scraping Project
To get excited before a family ski trip, I wanted to create a morning notification script that would show the new morning snow and the base snow.
To create the notification script (Listing 2), I used two passes with the Lynx utility. The first pass scrapes for new snow (shown in Figure 4) and then a second pass gets the snow base (shown in Figure 1). The snow results are then passed as a string ($msg)
to the notify-send
utility [4], which posts the message to the workstation desktop (Figure 5). You can schedule this Bash script to run every morning using either cron or the at utility.
Listing 2
Bash Web Scraping Notification Script
01 #!/bin/bash 02 # 03 # skitrip.sh - show the Sunshine ski conditions in a notification 04 # 05 theurl="https://www.snow-forecast.com/resorts/Sunshine/6day/mid" 06 07 # Get the new snow depth 08 thestr="New snow in Sunshine Village:" 09 result=$(lynx -dump "$theurl" | grep "$thestr") 10 newsnow="${result%%cm*} cm" 11 12 # Get the base 13 thestr="Top Lift:" 14 base=$(lynx -dump "$theurl" | grep "$thestr") 15 16 # Show the results in a desktop notification, with 120 minute wait time 17 msg="$newsnow\n$base (base)" 18 icon="$HOME/Downloads/mountain.png" 19 notify-send -t 120000 -i "$icon" "Sunshine Ski Resort" "$msg"
Summary
Scraping web pages can be tricky, and the pages can change at anytime. For this reason, it is always best to check if an API is available before looking at web scraping.
Python with the Beautiful Soup library has been my go-to approach for web scraping, but it's nice know that a simple Bash alternative is also available.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.