Initial commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
#import "template.typ"
|
||||
|
||||
#show: doc => template.apply(doc)
|
||||
|
||||
#grid(
|
||||
columns: (1fr, 1fr),
|
||||
[
|
||||
= Bash
|
||||
|
||||
```bash
|
||||
~% FILE="example.tar.gz"
|
||||
~% echo "${FILE%%.*}"
|
||||
example
|
||||
~% echo "${FILE%.*}"
|
||||
example.tar
|
||||
~% echo "${FILE#*.}"
|
||||
tar.gz
|
||||
~% echo "${FILE##*.}"
|
||||
gz
|
||||
```
|
||||
|
||||
= Screen
|
||||
|
||||
|
||||
```sh
|
||||
screen -S name # Créer un screen nommé
|
||||
screen -ls # Lister les screens
|
||||
screen -r name # Rattacher un screen
|
||||
# <Ctrl+A> <d> # Se détacher du screen actuel
|
||||
```
|
||||
],
|
||||
[],
|
||||
)
|
||||
Reference in New Issue
Block a user