mirror of
https://github.com/gfwlist/gfwlist.git
synced 2024-12-24 23:55:18 +00:00
bm90aGluZwo=
This commit is contained in:
parent
c1851403c2
commit
024b8c7159
10
lookup.sh
10
lookup.sh
@ -1,7 +1,15 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ $# != 1 ]; then
|
if [ $# != 1 ]; then
|
||||||
echo -e "Usage:\n $./lookup.sh wordpress\n $./lookup.sh ghs.l.google\n";
|
echo -e "\
|
||||||
|
Usage:
|
||||||
|
$./lookup.sh wordpress
|
||||||
|
$./lookup.sh ghs.l.google
|
||||||
|
$./lookup.sh 72.14.203.121 // ghs
|
||||||
|
$./lookup.sh 67.207.139.81 // Posterous
|
||||||
|
$./lookup.sh 72.32.231.8 // Tumblr
|
||||||
|
$./lookup.sh typepad
|
||||||
|
";
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -89,7 +89,11 @@ if [ "$*" == "" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# make sure the list doesn't contain unicode chars
|
# make sure the list doesn't contain unicode chars
|
||||||
file list.txt | grep ASCII 1> /dev/null || (echo "List contains non-ASCII characters, please remove them." && exit 1) &&
|
file list.txt | grep ASCII 1> /dev/null ||
|
||||||
|
(
|
||||||
|
echo "List contains non-ASCII characters, please remove them." &&
|
||||||
|
exit 1;
|
||||||
|
) &&
|
||||||
|
|
||||||
# update date and checksum
|
# update date and checksum
|
||||||
sed -i s/"Last Modified:.*$"/"Last Modified: $(date -R -r list.txt)"/ list.txt &&
|
sed -i s/"Last Modified:.*$"/"Last Modified: $(date -R -r list.txt)"/ list.txt &&
|
||||||
|
Loading…
Reference in New Issue
Block a user