Skip to content

Instantly share code, notes, and snippets.

View spacestate1's full-sized avatar

Collin McRann spacestate1

  • Washington, DC
View GitHub Profile
@spacestate1
spacestate1 / mac_scanner.sh
Created December 5, 2019 17:46
Local Network MAC address scan compare tool
#!/bin/bash
DATE=$(date +%Y-%m-%d)
DATE2=$(date +%Y-%m-%d-%H:%M)
pwd=$(pwd)
if ! [ -x "$(command -v arp-scan)" ]; then
echo 'Error: arp-scan is not installed.' >&2
exit 1
fi
@spacestate1
spacestate1 / csv2wikitable.py
Last active August 14, 2022 03:31 — forked from 0ncorhynchus/csv2wikitable.py
convert csv to wiki table
#!/usr/bin/python
"""
Usage: python csv2wikitable.py csv_file
-----
input: csv format
output: wiki table format
"""