File tree 2 files changed +17
-13
lines changed
2 files changed +17
-13
lines changed Original file line number Diff line number Diff line change 1
1
# kate
2
2
3
3
> KDE's advanced text editor.
4
- > More information: < https://kate-editor. org/ > .
4
+ > More information: < https://docs.kde. org/stable/en/kate/kate/fundamentals.html#starting-from-the-command-line > .
5
5
6
6
- Open specific files:
7
7
13
13
14
14
- Create a new editor instance even if one is already open:
15
15
16
- ` kate -- new `
16
+ ` kate {{[-n|-- new]}} `
17
17
18
18
- Open a file with the cursor at the specific line:
19
19
20
- ` kate -- line {{line_number}} {{path/to/file}} `
20
+ ` kate {{[-l|-- line]}} {{line_number}} {{path/to/file}} `
21
21
22
22
- Open a file with the cursor at the specific line and column:
23
23
24
- ` kate -- line {{line_number}} -- column {{column_number}} {{path/to/file}} `
24
+ ` kate {{[-l|-- line]}} {{line_number}} {{[-c|-- column]}} {{column_number}} {{path/to/file}} `
25
25
26
26
- Create a file from ` stdin ` :
27
27
28
- ` cat {{path/to/file}} | kate -- stdin `
28
+ ` cat {{path/to/file}} | kate {{[-i|-- stdin]}} `
29
29
30
30
- Display help:
31
31
32
- ` kate -- help `
32
+ ` kate {{[-h|-- help]}} `
Original file line number Diff line number Diff line change 1
1
# genfstab
2
2
3
- > Arch Linux install script to generate output suitable for addition to an fstab file.
4
- > More information: < https://manned.org/genfstab.8 > .
3
+ > Generate output suitable for addition to the ` /etc/ fstab` file.
4
+ > More information: < https://manned.org/genfstab > .
5
5
6
- - Display an fstab compatible output based on a volume label:
6
+ - Generate the ` /etc/fstab ` file using volume UUIDs during an Arch Linux installation (requires root permissions):
7
+
8
+ ` genfstab -U {{/mnt}} >> {{/mnt/etc/fstab}} `
9
+
10
+ - Display fstab-compatible output based on volume labels:
7
11
8
12
` genfstab -L {{path/to/mount_point}} `
9
13
10
- - Display an fstab compatible output based on a volume UUID :
14
+ - Display fstab- compatible output based on volume UUIDs :
11
15
12
16
` genfstab -U {{path/to/mount_point}} `
13
17
14
- - A usual way to generate an fstab file, requires root permissions :
18
+ - Display fstab-compatible output based on the specified identifier :
15
19
16
- ` genfstab -U {{/mnt}} >> {{/mnt/etc/fstab }} `
20
+ ` genfstab -t {{LABEL|UUID|PARTLABEL|PARTUUID }} `
17
21
18
- - Append a volume into an fstab file to mount it automatically:
22
+ - Append a volume into the ` /etc/ fstab` file to mount it automatically:
19
23
20
24
` genfstab -U {{path/to/mount_point}} | sudo tee -a /etc/fstab `
You can’t perform that action at this time.
0 commit comments