Skip to content

Instantly share code, notes, and snippets.

View feuyeux's full-sized avatar
♠️

Lu Han feuyeux

♠️
View GitHub Profile
@feuyeux
feuyeux / HTTP2 learning.md
Last active August 28, 2016 19:33
HTTP2 learning
#!/bin/bash
function a() {
for file in "$1"/*
do
if [ ! -d "${file}" ] ; then
asciidoctor "${file}"
else
traverse "${file}"
fi
done