mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-09 22:28:21 +00:00
11 lines
272 B
Bash
Executable File
11 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in `\ls new-api | grep "${1-.}"`; do
|
|
clear
|
|
echo -e "#######\n### ${i}\n#######\n\n\n\n"
|
|
diff --report-identical-files --unified=10 old-api/${i} new-api/${i} | diffr
|
|
|
|
echo -e "\n\n\n\nPress any key to diff the next file…"
|
|
read
|
|
done
|