document structure refatcoring
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
francesco 2021-05-24 15:17:11 +02:00
parent 8cc7738d3c
commit 3d91b426af
7 changed files with 38 additions and 7 deletions

19
docs/bash.md Normal file
View File

@ -0,0 +1,19 @@
# Bash Commands
## Find
### Find and delete
Find and delete command
```bash
find / -name .DS_Store -delete
```
Alternative find and delete command
```bash
find / -name ".DS_Store" -exec rm {} \;
```
the previous command is due that not all `find` have a delete funcion but with overhead of new process `-exec`.
Find and delete with no overhead
```bash
find / -name .DS_Store -print0 | xargs -0 rm
```

1
docs/cd.md Normal file
View File

@ -0,0 +1 @@
# Continuous delivery

1
docs/ci.md Normal file
View File

@ -0,0 +1 @@
# Continuous integration

View File

@ -1,5 +0,0 @@
# CI / CD
## Continuous integration
## Continuous delivery

1
docs/csharp.md Normal file
View File

@ -0,0 +1 @@
# C#

View File

@ -1,3 +1,2 @@
# Linux
## Arch Linux and X220

View File

@ -2,4 +2,19 @@ site_name: F-Docs
theme:
name: 'material'
repo_url: https://git.r4o.ch/francesco/mkdocs/
docs_dir: 'docs'
docs_dir: 'docs'
# Page tree
nav:
- Home: index.md
- Programming:
- Python: python.md
- C#: csharp.md
-
- CI / CD:
- CI: ci.md
- CD: cd.md
- Docker: docker.md
- Linux: linux.md
- Network:
-