mirror of
https://github.com/disposable-email-domains/disposable-email-domains.git
synced 2024-11-23 00:58:11 +08:00
updated commenting
This commit is contained in:
parent
ca0d4af058
commit
aabe661dbe
@ -3,7 +3,7 @@ temp_file="temp.sort"
|
|||||||
num_insertions=0
|
num_insertions=0
|
||||||
num_duplicates=0
|
num_duplicates=0
|
||||||
|
|
||||||
# Copy contents of second file into first file
|
# Append contents of new_file into main_file
|
||||||
# ensuring no duplicates.
|
# ensuring no duplicates.
|
||||||
while read p; do
|
while read p; do
|
||||||
if [ $(grep -w $p $2 | wc -l) -eq 0 ]; then
|
if [ $(grep -w $p $2 | wc -l) -eq 0 ]; then
|
||||||
@ -17,6 +17,7 @@ done < $1
|
|||||||
echo "NUMBER OF INSERTIONS: $num_insertions"
|
echo "NUMBER OF INSERTIONS: $num_insertions"
|
||||||
echo "NUMBER OF DUPLICATES: $num_duplicates"
|
echo "NUMBER OF DUPLICATES: $num_duplicates"
|
||||||
|
|
||||||
|
# Sort main_file
|
||||||
sort $2 > $temp_file
|
sort $2 > $temp_file
|
||||||
cat $temp_file > $2
|
cat $temp_file > $2
|
||||||
rm -f $temp_file
|
rm -f $temp_file
|
||||||
|
Loading…
Reference in New Issue
Block a user