How to use the jc.parsers.history.parse function in jc

To help you get started, we’ve selected a few jc examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github kellyjonbrazil / jc / tests / test_history.py View on Github external
def test_history_ubuntu_18_4(self):
        """
        Test 'history' on Ubuntu 18.4
        """
        self.assertEqual(jc.parsers.history.parse(self.ubuntu_18_4_history, quiet=True), self.ubuntu_18_4_history_json)
github kellyjonbrazil / jc / tests / test_history.py View on Github external
def test_history_centos_7_7(self):
        """
        Test 'history' on Centos 7.7
        """
        self.assertEqual(jc.parsers.history.parse(self.centos_7_7_history, quiet=True), self.centos_7_7_history_json)
github kellyjonbrazil / jc / jc / jc.py View on Github external
result = jc.parsers.arp.parse(data, raw=raw, quiet=quiet)

    elif '--df' in sys.argv:
        result = jc.parsers.df.parse(data, raw=raw, quiet=quiet)

    elif '--dig' in sys.argv:
        result = jc.parsers.dig.parse(data, raw=raw, quiet=quiet)

    elif '--env' in sys.argv:
        result = jc.parsers.env.parse(data, raw=raw, quiet=quiet)

    elif '--free' in sys.argv:
        result = jc.parsers.free.parse(data, raw=raw, quiet=quiet)

    elif '--history' in sys.argv:
        result = jc.parsers.history.parse(data, raw=raw, quiet=quiet)

    elif '--ifconfig' in sys.argv:
        result = jc.parsers.ifconfig.parse(data, raw=raw, quiet=quiet)

    elif '--iptables' in sys.argv:
        result = jc.parsers.iptables.parse(data, raw=raw, quiet=quiet)

    elif '--jobs' in sys.argv:
        result = jc.parsers.jobs.parse(data, raw=raw, quiet=quiet)

    elif '--ls' in sys.argv:
        result = jc.parsers.ls.parse(data, raw=raw, quiet=quiet)

    elif '--lsblk' in sys.argv:
        result = jc.parsers.lsblk.parse(data, raw=raw, quiet=quiet)
github kellyjonbrazil / jc / jc / cli.py View on Github external
if '-q' in sys.argv:
        quiet = True

    if '-r' in sys.argv:
        raw = True

    # parsers
    parser_map = {
        '--arp': jc.parsers.arp.parse,
        '--df': jc.parsers.df.parse,
        '--dig': jc.parsers.dig.parse,
        '--env': jc.parsers.env.parse,
        '--free': jc.parsers.free.parse,
        '--fstab': jc.parsers.fstab.parse,
        '--history': jc.parsers.history.parse,
        '--hosts': jc.parsers.hosts.parse,
        '--ifconfig': jc.parsers.ifconfig.parse,
        '--iptables': jc.parsers.iptables.parse,
        '--jobs': jc.parsers.jobs.parse,
        '--ls': jc.parsers.ls.parse,
        '--lsblk': jc.parsers.lsblk.parse,
        '--lsmod': jc.parsers.lsmod.parse,
        '--lsof': jc.parsers.lsof.parse,
        '--mount': jc.parsers.mount.parse,
        '--netstat': jc.parsers.netstat.parse,
        '--ps': jc.parsers.ps.parse,
        '--route': jc.parsers.route.parse,
        '--ss': jc.parsers.ss.parse,
        '--stat': jc.parsers.stat.parse,
        '--systemctl': jc.parsers.systemctl.parse,
        '--systemctl-lj': jc.parsers.systemctl_lj.parse,