mirror of
https://github.com/kou029w/looks-like-github.git
synced 2025-01-18 16:08:01 +00:00
8 lines
144 B
Text
8 lines
144 B
Text
|
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
|
||
|
while read -a args; do
|
||
|
name=${args[0]}
|
||
|
diff -u <(curl -sL "${args[2]}") <(curl -sL "${args[1]}")
|
||
|
done < why
|