diff --git a/cheat.egg-info/PKG-INFO b/cheat.egg-info/PKG-INFO new file mode 100644 index 0000000..e3082f7 --- /dev/null +++ b/cheat.egg-info/PKG-INFO @@ -0,0 +1,10 @@ +Metadata-Version: 1.0 +Name: cheat +Version: 2.1.0 +Summary: cheat allows you to create and view interactive cheatsheets on the command-line. It was designed to help remind *nix system administrators of options for commands that they use frequently, but not frequently enough to remember. +Home-page: https://github.com/chrisallenlane/cheat +Author: Chris Lane +Author-email: chris@chris-allen-lane.com +License: GPL3 +Description: UNKNOWN +Platform: UNKNOWN diff --git a/cheat.egg-info/SOURCES.txt b/cheat.egg-info/SOURCES.txt new file mode 100644 index 0000000..35bf50b --- /dev/null +++ b/cheat.egg-info/SOURCES.txt @@ -0,0 +1,113 @@ +setup.py +bin/cheat +cheat/__init__.py +cheat/sheet.py +cheat/sheets.py +cheat/utils.py +cheat.egg-info/PKG-INFO +cheat.egg-info/SOURCES.txt +cheat.egg-info/dependency_links.txt +cheat.egg-info/requires.txt +cheat.egg-info/top_level.txt +cheat/cheatsheets/7z +cheat/cheatsheets/__init__.py +cheat/cheatsheets/ab +cheat/cheatsheets/apk +cheat/cheatsheets/apparmor +cheat/cheatsheets/apt-cache +cheat/cheatsheets/apt-get +cheat/cheatsheets/aptitude +cheat/cheatsheets/asciiart +cheat/cheatsheets/asterisk +cheat/cheatsheets/at +cheat/cheatsheets/awk +cheat/cheatsheets/bash +cheat/cheatsheets/chmod +cheat/cheatsheets/chown +cheat/cheatsheets/convert +cheat/cheatsheets/crontab +cheat/cheatsheets/curl +cheat/cheatsheets/cut +cheat/cheatsheets/date +cheat/cheatsheets/dd +cheat/cheatsheets/df +cheat/cheatsheets/dhclient +cheat/cheatsheets/diff +cheat/cheatsheets/distcc +cheat/cheatsheets/du +cheat/cheatsheets/emacs +cheat/cheatsheets/find +cheat/cheatsheets/gcc +cheat/cheatsheets/gdb +cheat/cheatsheets/git +cheat/cheatsheets/gpg +cheat/cheatsheets/grep +cheat/cheatsheets/gs +cheat/cheatsheets/head +cheat/cheatsheets/history +cheat/cheatsheets/hub +cheat/cheatsheets/ifconfig +cheat/cheatsheets/indent +cheat/cheatsheets/ip +cheat/cheatsheets/iptables +cheat/cheatsheets/irssi +cheat/cheatsheets/iwconfig +cheat/cheatsheets/journalctl +cheat/cheatsheets/less +cheat/cheatsheets/ln +cheat/cheatsheets/ls +cheat/cheatsheets/lsof +cheat/cheatsheets/lvm +cheat/cheatsheets/markdown +cheat/cheatsheets/mkdir +cheat/cheatsheets/mount +cheat/cheatsheets/mysql +cheat/cheatsheets/mysqldump +cheat/cheatsheets/nc +cheat/cheatsheets/ncat +cheat/cheatsheets/netstat +cheat/cheatsheets/nmap +cheat/cheatsheets/notify-send +cheat/cheatsheets/od +cheat/cheatsheets/openssl +cheat/cheatsheets/pacman +cheat/cheatsheets/pdftk +cheat/cheatsheets/php +cheat/cheatsheets/ps +cheat/cheatsheets/python +cheat/cheatsheets/readline +cheat/cheatsheets/rm +cheat/cheatsheets/route +cheat/cheatsheets/rpm +cheat/cheatsheets/rsync +cheat/cheatsheets/sam2p +cheat/cheatsheets/scp +cheat/cheatsheets/screen +cheat/cheatsheets/sed +cheat/cheatsheets/shred +cheat/cheatsheets/snmpwalk +cheat/cheatsheets/sockstat +cheat/cheatsheets/sort +cheat/cheatsheets/split +cheat/cheatsheets/sqlmap +cheat/cheatsheets/ssh +cheat/cheatsheets/ssh-copy-id +cheat/cheatsheets/ssh-keygen +cheat/cheatsheets/stdout +cheat/cheatsheets/strace +cheat/cheatsheets/systemctl +cheat/cheatsheets/tail +cheat/cheatsheets/tar +cheat/cheatsheets/tcpdump +cheat/cheatsheets/tee +cheat/cheatsheets/tmux +cheat/cheatsheets/top +cheat/cheatsheets/truncate +cheat/cheatsheets/uname +cheat/cheatsheets/vim +cheat/cheatsheets/wget +cheat/cheatsheets/xargs +cheat/cheatsheets/yaourt +cheat/cheatsheets/youtube-dl +cheat/cheatsheets/yum +cheat/test/__init__.py \ No newline at end of file diff --git a/cheat.egg-info/dependency_links.txt b/cheat.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/cheat.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/cheat.egg-info/requires.txt b/cheat.egg-info/requires.txt new file mode 100644 index 0000000..871dfb3 --- /dev/null +++ b/cheat.egg-info/requires.txt @@ -0,0 +1,2 @@ +docopt >= 0.6.1 +pygments >= 1.6.0 \ No newline at end of file diff --git a/cheat.egg-info/top_level.txt b/cheat.egg-info/top_level.txt new file mode 100644 index 0000000..e5c391e --- /dev/null +++ b/cheat.egg-info/top_level.txt @@ -0,0 +1 @@ +cheat diff --git a/cheat/cheatsheets/snmpwalk b/cheat/cheatsheets/snmpwalk new file mode 100644 index 0000000..e778379 --- /dev/null +++ b/cheat/cheatsheets/snmpwalk @@ -0,0 +1,5 @@ +#retrieve all of the variables under system +snmpwalk -Os -c public -v 1 zeus system + +#retrieve the scalar values, but omit the sysORTable +snmpwalk -Os -c public -v 1 -CE sysORTable zeus system diff --git a/dist/cheat-2.1.0-py2.7.egg b/dist/cheat-2.1.0-py2.7.egg new file mode 100644 index 0000000..1c55404 Binary files /dev/null and b/dist/cheat-2.1.0-py2.7.egg differ diff --git a/setup.py b/setup.py index d791f64..8c3bd3c 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ -from distutils.core import setup +#from distutils.core import setup +from setuptools import setup, Extension import os setup(