Skip to content

Commit ae50b1c

Browse files
committed
Update doc
Update doc Signed-off-by: Bensuperpc <[email protected]>
1 parent e670a05 commit ae50b1c

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

Commands.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
## archlinux
33

4+
Scripts for Archlinux and Manjaro
5+
46
- [`clean-arch`](#clean-arch)
57
- [`update-arch`](#update-arch)
68

@@ -10,19 +12,29 @@
1012

1113
## audio
1214

15+
Scripts for audio (FFMPEG ...)
16+
1317
- [`extract-audio`](#extract-audio)
1418

1519
## cryptography
20+
21+
For cryptography and security
22+
1623
- [`digital-signature-check-RSA`](#digital-signature-check-RSA)
1724
- [`digital-signature-RSA`](#digital-signature-RSA)
25+
- [`cryptr`](#cryptr)
1826

1927
## debian
2028

29+
Scripts for Debian and Ubuntu
30+
2131
- [`clean-debian`](#clean-debian)
2232
- [`update-debian`](#update-debian)
2333

2434
## development
2535

36+
Scripts for C/C++ development and cross platform
37+
2638
- [`format-code`](#format-code)
2739
- [`cmake-builder`](#cmake-builder)
2840
- [`ninja-builder`](#ninja-builder)
@@ -31,6 +43,8 @@
3143

3244
## file
3345

46+
For file management or backup
47+
3448
- [`rsync-archive`](#rsync-archive)
3549
- [`rsync-check`](#rsync-check)
3650
- [`rsync-rsa`](#rsync-rsa)
@@ -40,6 +54,8 @@
4054

4155
## game
4256

57+
To create archives of game saves
58+
4359
- [`save-mindustry-linux`](#save-mindustry-linux)
4460
- [`save-satisfactory-linux`](#save-satisfactory-linux)
4561
- [`save-terraria-linux`](#save-terraria-linux)
@@ -100,11 +116,15 @@
100116

101117
## partition
102118

119+
For creating partitions (encrypted or in RAM for example)
120+
103121
- [`luks`](#luks)
104122
- [`mount-ram`](#mount-ram)
105123

106124
## video
107125

126+
For encoding, creating, recording or downloading videos
127+
108128
- [`screen-capture`](#screen-capture)
109129
- [`screen-capture-webcam`](#screen-capture-webcam)
110130
- [`gource-nvenc`](#gource-nvenc)
@@ -162,6 +182,15 @@ $ digital-signature-RSA sign <file> <password>
162182
$ PUBLIC_KEY=mypublic.pem digital-signature-RSA check <file>
163183
```
164184

185+
### cryptr
186+
187+
A simple shell utility for encrypting and decrypting files using OpenSSL.
188+
189+
```bash
190+
$ cryptr encrypt <file>
191+
$ cryptr decrypt <file.aes>
192+
```
193+
165194
### clean-debian
166195

167196
Clean debian (and ubuntu), remove old packages...

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#//////////////////////////////////////////////////////////////
2121
PROJECT_NAME := scripts
2222
SHELL := bash
23-
VERSION := 1.3.1
23+
VERSION := 1.3.2
2424
RM := rm
2525

2626
all: install

0 commit comments

Comments
 (0)