5

shell脚本实现 按行读取网址列表并处理

 1 month ago
source link: https://zhangyiming748.github.io/post/shell_read_url_by_line/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

shell脚本实现 按行读取网址列表并处理

2024-04-01 AI shell

#!/bin/bash

# 读取网址列表文件
url_list="url_list.txt"

# 按行读取网址列表
while IFS= read -r url
do
  # 在这里处理每个网址,例如访问网址、下载内容等
  echo "处理网址: $url"
done < "$url_list"

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK