dir2list

generate a list of files shuffled by directory
git clone anongit@rnpnr.xyz:dir2list.git
Log | Files | Refs | Feed | README | LICENSE

README.md (607B)


      1 dir2list
      2 ========
      3 shuffle subdirs and write filenames to stdout
      4 
      5 Dependencies
      6 ------------
      7 * POSIX Compliant C Library
      8 * ANSI/C89 C compiler
      9 
     10 Tested on `x86_64-linux-musl` but it should work elsewhere.
     11 
     12 Install
     13 -------
     14 Edit `config.mk` and `config.h` to your liking and run make. Then to
     15 install, using elevated privileges if neccesary:
     16 ```
     17 make
     18 doas make install
     19 ```
     20 
     21 Limitations
     22 -----------
     23 * Speed
     24 	- Probably gets slow with very large deeply nested directories.
     25 * Race Conditions
     26 	- No mechanism is put in place to handle the addition and
     27 	  removal of files from working directories during operation.
     28