Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Melnichek <melnichek@gmail.com>2012-09-17 14:08:37 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:43:32 +0300
commit626981b8f28d3f297dafc84c0fc76205165eda5d (patch)
treedaf05df42ce6bd7ec374c71506975d1d9efa3041 /crawler
parent59ae727bef8a55c543d8891d55d016fd956707cc (diff)
[crawler] Removed case insensetive grep since it didn't work correctly with utf8.
Diffstat (limited to 'crawler')
-rwxr-xr-xcrawler/extract-image-urls.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawler/extract-image-urls.sh b/crawler/extract-image-urls.sh
index 508f45f42b..ea17fc38fa 100755
--- a/crawler/extract-image-urls.sh
+++ b/crawler/extract-image-urls.sh
@@ -1,7 +1,7 @@
#!/bin/bash
set -e -u -x
-grep --ignore-case --only-matching --no-filename --mmap '<img[^/]*src=\"[^">]*"' -r --include=*.opt . \
+grep --only-matching --no-filename --mmap '<img[^/]*src=\"[^">]*"' -r --include=*.opt . \
| sed 's/<img.*src="//g' \
| sed 's/"$//g' \
| sort -u \