Skip to content

Instantly share code, notes, and snippets.

@evanzillians
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save evanzillians/9224641 to your computer and use it in GitHub Desktop.

Select an option

Save evanzillians/9224641 to your computer and use it in GitHub Desktop.

Revisions

  1. evanzillians revised this gist Feb 26, 2014. 1 changed file with 25 additions and 22 deletions.
    47 changes: 25 additions & 22 deletions draft.txt
    Original file line number Diff line number Diff line change
    @@ -1,25 +1,28 @@
    thor
    ├── contrib
    ├── bar
    └── foo
       ├── bar
       └── foo
    ├── include
    │ ├── dir-1
    │ │ └── hdr-1.h
    │ └── dir-2
    │ └── hdr-2.h
    └── src
    ├── target-1
    │ ├── src
    │ │ └── src-1.cpp
    │ └── test
    │ └── test.cpp
    ├── target-2
    │ ├── src
    │ │ └── src-2.cpp
    │ └── test
    │ └── test.cpp
    └── target-3
    ├── src
    │ └── src-3.cpp
    └── test
    └── test.cpp
    │   ├── dir-1
    │   │   └── hdr-1.h
    │   └── dir-2
    │   └── hdr-2.h
    ├── src
    │   ├── target-1
    │   │   ├── src
    │   │   │   └── src-1.cpp
    │   │   └── test
    │   │   └── test.cpp
    │   ├── target-2
    │   │   ├── src
    │   │   │   └── src-2.cpp
    │   │   └── test
    │   │   └── test.cpp
    │   └── target-3
    │   ├── src
    │   │   └── src-3.cpp
    │   └── test
    │   └── test.cpp
    └── test
    └── complicated
    └── test.cpp
  2. evanzillians created this gist Feb 26, 2014.
    25 changes: 25 additions & 0 deletions draft.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,25 @@
    thor
    ├── contrib
    │ ├── bar
    │ └── foo
    ├── include
    │ ├── dir-1
    │ │ └── hdr-1.h
    │ └── dir-2
    │ └── hdr-2.h
    └── src
    ├── target-1
    │ ├── src
    │ │ └── src-1.cpp
    │ └── test
    │ └── test.cpp
    ├── target-2
    │ ├── src
    │ │ └── src-2.cpp
    │ └── test
    │ └── test.cpp
    └── target-3
    ├── src
    │ └── src-3.cpp
    └── test
    └── test.cpp