An open API service indexing awesome lists of open source software.

https://github.com/0x8b/.dotfiles

My configuration files and personal collection of scripts.
https://github.com/0x8b/.dotfiles

bash dotfiles script

Last synced: about 2 months ago
JSON representation

My configuration files and personal collection of scripts.

Awesome Lists containing this project

README

          

# .dotfiles

## `bin/`

### [`mkstruct`](bin/mkstruct)

`structure.txt` content (**indentation** is equal to **two spaces**):

```
root/
a/
.git/
b/
file
script.py
module/
lib.py
```

```console
$ cat structure.txt | mkstruct
$ ls root -AR
```

```
root:
a/ b/

root/a:
.git/

root/a/.git:

root/b:
file module/ script.py

root/b/module:
lib.py
```