mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
[fix] remove file names before sorting and removing duplicate.
This commit is contained in:
parent
b80caa19c5
commit
ed5b37d067
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ grep -E -o $pattern $* | \
|
||||||
# Eclude example addresses
|
# Eclude example addresses
|
||||||
grep -v jon@doe.net | grep -vi domain | grep -v johndoe@example.com | \
|
grep -v jon@doe.net | grep -vi domain | grep -v johndoe@example.com | \
|
||||||
|
|
||||||
# Sort, remove duplicate, remove file name with many arguments
|
# Remove file name when there is more than two arguments, sort, remove duplicate
|
||||||
sort | uniq | cut -d : -f 2 # | wc -l
|
cut -d : -f 2 | sort | uniq # | wc -l
|
||||||
|
|
||||||
# Get number of packagers: uncomment upper line
|
# Get number of packagers: uncomment upper line
|
||||||
|
|
Loading…
Add table
Reference in a new issue