This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
choco install authy-desktop -y | |
choco install git –y | |
choco install putty -y | |
choco install gitextensions -y | |
choco install vscode –y | |
choco install 7zip –y | |
choco install googlechrome -y | |
choco install firefox –y | |
choco install powershell –y | |
choco install powershell-core -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# This scripts takes a binary file containing CCSDS packets and splits them into one file per packet | |
# Usage > python3 PacketSplitter.py -i <InputFile> -o <outputFiles> | |
import datetime | |
import sys, getopt, os | |
from os.path import exists |
OlderNewer