Seeking to document part numbers as needed for server I use/maintain.
The part numbers or applicable models may not be inclusive of all possible compatible parts
Generally I only care about the following models for now
- R420
- R720
| import os | |
| import time | |
| import argparse | |
| from pprint import pprint as pp | |
| from pprint import pformat as pf | |
| from contextlib import redirect_stdout | |
| import oletools.oleid | |
| from oletools.olevba import VBA_Parser, VBA_Parser_CLI, TYPE_OLE, TYPE_OpenXML, TYPE_Word2003_XML, TYPE_MHTML | |
| ################################################################################ | |
| ### Standard | |
| ################################################################################ | |
| ### | |
| ### Comprehensions | |
| ### | |
| # List Comprehension | |
| resulting_list = [i for i in original_list_or_array] |
Seeking to document part numbers as needed for server I use/maintain.
The part numbers or applicable models may not be inclusive of all possible compatible parts
Generally I only care about the following models for now
| find . -name "*.flac" -exec ffmpeg -i {} -ab 320k -map_metadata 0 -id3v2_version 3 {}.mp3 \; | |
| find . -name "*.mp3" -exec mv {} ~/new_folder/ \; | |
| find . -name "*.flac" -print | |
| find . -name "*.flac" -delete |