Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add sort to whats_left_modules.sh
  • Loading branch information
burck1 committed Jan 26, 2022
commit 34e4ea4162ab2b09b635a448bbf11eaae6c41984
76 changes: 38 additions & 38 deletions _data/whats_left/modules.csv
Original file line number Diff line number Diff line change
@@ -1,45 +1,77 @@
module
_abc
_aix_support
_asyncio
_blake2
_bootlocale
_bootsubprocess
_bz2
_codecs_cn
_codecs_hk
_codecs_iso2022
_codecs_jp
_codecs_kr
_codecs_tw
_contextvars
_crypt
_ctypes
_ctypes_test
_curses
_curses_panel
_datetime
_dbm
_decimal
_elementtree
_hashlib
_heapq
_locale
_lsprof
_lzma
_md5
_multibytecodec
_opcode
_peg_parser
_pickle
_posixshmem
_queue
_sha1
_sha256
_sha3
_sha512
_sqlite3
_ssl
_stat
_statistics
_symtable
_tracemalloc
grp
_aix_support
_bootlocale
_bootsubprocess
_strptime
_symtable
_sysconfigdata__linux_x86_64-linux-gnu
_sysconfigdata__x86_64-linux-gnu
_testbuffer
_tracemalloc
_uuid
_xxsubinterpreters
_xxtestfuzz
_zoneinfo
bz2
cProfile
contextvars
ctypes
curses
fileinput
graphlib
grp
imaplib
lzma
mailbox
mailcap
mmap
modulefinder
pickletools
poplib
profile
pstats
pyclbr
readline
sitecustomize
smtplib
sqlite3
Expand All @@ -49,35 +81,3 @@ tracemalloc
turtle
wave
zoneinfo
_asyncio
_bz2
_codecs_cn
_codecs_hk
_codecs_iso2022
_codecs_jp
_codecs_kr
_codecs_tw
_contextvars
_crypt
_ctypes
_ctypes_test
_curses
_curses_panel
_dbm
_decimal
_hashlib
_lsprof
_lzma
_multibytecodec
_opcode
_posixshmem
_queue
_sqlite3
_ssl
_testbuffer
_uuid
_xxsubinterpreters
_xxtestfuzz
_zoneinfo
mmap
readline
6 changes: 3 additions & 3 deletions scripts/whats_left_modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

# create directory in case it doesn't exist
mkdir -p ../_data/whats_left

# start a new csv file for modules
echo "module" > ../_data/whats_left/modules.csv

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