mirror of
https://github.com/kou029w/looks-like-github.git
synced 2025-01-18 08:05:08 +00:00
7 lines
144 B
Bash
Executable file
7 lines
144 B
Bash
Executable file
#!/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
|