mirror of
https://github.com/tcsenpai/powertux.git
synced 2025-06-07 03:35:23 +00:00
7 lines
175 B
Bash
Executable File
7 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
curl "$1" > dump_tmp_file
|
|
cat dump_tmp_file | grep -Eo "(http|https)://[a-zA-Z0-9./?=_%:-]*" | sort -u > gophereal_links
|
|
rm -rf dump_tmp_file
|
|
cat gophereal_links
|