#!/bin/bash # 读取input.txt文件中的URL列表 while IFS= read -r url || [[ -n "$url" ]]; do # 去掉URL中的https://或http://部分,并去除文件名,得到路径 dir=$(echo $url | sed -e 's|https\?://||' -e 's:/[^/]*$::') # 输出修改后的URL和目录信息,带换行 echo "$url" >> output.txt echo " dir=/www/wwwroot/tupian/$dir/" >> output.txt done < input.txt