mirror of
https://abf.rosa.ru/djam/chromium-browser-stable.git
synced 2025-02-24 23:22:50 +00:00
5 lines
208 B
Bash
Executable file
5 lines
208 B
Bash
Executable file
#!/bin/sh
|
|
# Author: mikhailnov
|
|
cat *.spec | grep ^Patch | awk '{print $NF}' | sort | uniq > /tmp/patches-spec
|
|
ls | grep \.patch | sort | uniq > /tmp/patches-files
|
|
diff -u /tmp/patches-spec /tmp/patches-files
|