Rev 38 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 38 | Rev 43 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | //usr/bin/env go run $0 $@; exit $? |
1 | //usr/bin/env go run $0 $@; exit $? |
- | 2 | ||
- | 3 | // ============================================================================ |
|
- | 4 | // Create |
|
- | 5 | // name : Andre Rikkert de Koe date: Mar 2018 |
|
- | 6 | // descr : filefind |
|
- | 7 | // This is a demo of programming in the Elixir language. |
|
- | 8 | // Its part of a project to implement a program to create a directory |
|
- | 9 | // tree similar to the output of the Unix find program. |
|
- | 10 | // EUID : Any user who has read access to all the files being searched for. |
|
- | 11 | // run : interactive |
|
- | 12 | // |
|
- | 13 | // Changes |
|
- | 14 | // name : date: |
|
- | 15 | // descr : short description |
|
- | 16 | // |
|
- | 17 | // ============================================================================ |
|
- | 18 | ||
2 | package main |
19 | package main |
3 | 20 | ||
4 | import ( |
21 | import ( |
5 | "fmt" |
22 | "fmt" |
6 | "io/ioutil" |
23 | "io/ioutil" |