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.
- Host: GitHub
- URL: https://github.com/0x8b/.dotfiles
- Owner: 0x8b
- Created: 2020-04-30T09:11:50.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-03T08:06:41.000Z (about 6 years ago)
- Last Synced: 2025-10-26T09:23:08.534Z (8 months ago)
- Topics: bash, dotfiles, script
- Language: Shell
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```