This reference is derived from the 1.8.x filter grammar. Filters are supplied
as the final nfdump argument or read from a file with -f filterfile.
nfdump -r flows 'proto tcp and dst port 443'
nfdump -r flows -f incident.filter| const notesInfo = (results: any[]) => ({ | |
| action: "notesInfo", | |
| version: 6, | |
| params: { | |
| notes: results, | |
| }, | |
| }); | |
| const deckname = Deno.args[0] ?? "*"; |
| angular.module('sample-app', ['angularytics']) | |
| .config(function(AngularyticsProvider) { | |
| AngularyticsProvider.setEventHandlers(['Console', 'Google']); | |
| }) | |
| .run(function(Angularytics) { | |
| Angularytics.init(); | |
| }); |
| git status --porcelain | grep 'test' | grep -v 'factories' | cut -c4- | sort | uniq | xargs zeus test |
| require 'json' | |
| ## What | |
| # This file takes in a markdown file and converts any [codeblocks](http://daringfireball.net/projects/markdown/syntax#precode) | |
| # into gists, then embeds the gists via JS. | |
| # Watch out for Github rate limiting, via IP, this is not an authenticated request | |
| #!/bin/sh | |
| echo "What should the Application be called (no spaces allowed e.g. GCal)?" | |
| read inputline | |
| name="$inputline" | |
| echo "What is the url (e.g. https://www.google.com/calendar/render)?" | |
| read inputline | |
| url="$inputline" |
| !!! 5 | |
| %html | |
| %head | |
| %title= "Your Website" | |
| %meta{ :content => "", :name => "description" } | |
| %meta{ :content => "", :name => "author" } | |
| %meta{ :content => "3 days", :name => "revisit-after" } | |
| %link{ :href => "http://creativecommons.org/licenses/by/3.0/", :rel => "license", :title => "Creative Commons Attribution 3.0 Unported License" } | |
| %link{ :href => "/feed", :rel => "alternate", :title => "Atom", :type => "application/atom+xml" } | |
| %link{ :href => "/css/screen.css", :media => "screen", :rel => "stylesheet" } |