Skip to content

Commit 34e4ea4

Browse files
committed
add sort to whats_left_modules.sh
1 parent 8229265 commit 34e4ea4

File tree

2 files changed

+41
-41
lines changed

2 files changed

+41
-41
lines changed

_data/whats_left/modules.csv

+38-38
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,77 @@
11
module
22
_abc
3+
_aix_support
4+
_asyncio
35
_blake2
6+
_bootlocale
7+
_bootsubprocess
8+
_bz2
9+
_codecs_cn
10+
_codecs_hk
11+
_codecs_iso2022
12+
_codecs_jp
13+
_codecs_kr
14+
_codecs_tw
15+
_contextvars
16+
_crypt
17+
_ctypes
18+
_ctypes_test
19+
_curses
20+
_curses_panel
421
_datetime
22+
_dbm
23+
_decimal
524
_elementtree
25+
_hashlib
626
_heapq
727
_locale
28+
_lsprof
29+
_lzma
830
_md5
31+
_multibytecodec
32+
_opcode
933
_peg_parser
1034
_pickle
35+
_posixshmem
36+
_queue
1137
_sha1
1238
_sha256
1339
_sha3
1440
_sha512
41+
_sqlite3
42+
_ssl
1543
_stat
1644
_statistics
17-
_symtable
18-
_tracemalloc
19-
grp
20-
_aix_support
21-
_bootlocale
22-
_bootsubprocess
2345
_strptime
46+
_symtable
2447
_sysconfigdata__linux_x86_64-linux-gnu
2548
_sysconfigdata__x86_64-linux-gnu
49+
_testbuffer
50+
_tracemalloc
51+
_uuid
52+
_xxsubinterpreters
53+
_xxtestfuzz
54+
_zoneinfo
2655
bz2
2756
cProfile
2857
contextvars
2958
ctypes
3059
curses
3160
fileinput
3261
graphlib
62+
grp
3363
imaplib
3464
lzma
3565
mailbox
3666
mailcap
67+
mmap
3768
modulefinder
3869
pickletools
3970
poplib
4071
profile
4172
pstats
4273
pyclbr
74+
readline
4375
sitecustomize
4476
smtplib
4577
sqlite3
@@ -49,35 +81,3 @@ tracemalloc
4981
turtle
5082
wave
5183
zoneinfo
52-
_asyncio
53-
_bz2
54-
_codecs_cn
55-
_codecs_hk
56-
_codecs_iso2022
57-
_codecs_jp
58-
_codecs_kr
59-
_codecs_tw
60-
_contextvars
61-
_crypt
62-
_ctypes
63-
_ctypes_test
64-
_curses
65-
_curses_panel
66-
_dbm
67-
_decimal
68-
_hashlib
69-
_lsprof
70-
_lzma
71-
_multibytecodec
72-
_opcode
73-
_posixshmem
74-
_queue
75-
_sqlite3
76-
_ssl
77-
_testbuffer
78-
_uuid
79-
_xxsubinterpreters
80-
_xxtestfuzz
81-
_zoneinfo
82-
mmap
83-
readline

scripts/whats_left_modules.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
# create directory in case it doesn't exist
44
mkdir -p ../_data/whats_left
5-
5+
66
# start a new csv file for modules
77
echo "module" > ../_data/whats_left/modules.csv
88

99
# read the temp file and look for "(entire module)"
10-
# save the output as csv
11-
cat ../_data/whats_left.temp | grep "(entire module)" | cut -d ' ' -f 1 >> ../_data/whats_left/modules.csv
10+
# save the output as csv
11+
cat ../_data/whats_left.temp | grep "(entire module)" | cut -d ' ' -f 1 | sort >> ../_data/whats_left/modules.csv

0 commit comments

Comments
 (0)