-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdos_subst.mde
55 lines (45 loc) · 1.59 KB
/
dos_subst.mde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# DOS - Commands
## subst
Using `subst` you can map long directory paths to simple drive letters:
```
subst <drive> <path>
e.g.
subst x: C:\Dev\source2\commons\acme-commons-apps\src\main\jcr_root
```
Means maps the path `C:\Dev\source2\commons\acme-commons-apps\src\main\jcr_root` on drive x:.
So issueing
```
C:\Users\xne1399>dir x:
Datenträger in Laufwerk X: ist System
Volumeseriennummer: F6B5-5EC0
Verzeichnis von X:\
27.01.2017 14:56 <DIR> .
27.01.2017 14:56 <DIR> ..
27.01.2017 14:56 511 .content.xml
27.01.2017 14:56 <DIR> apps
12.07.2017 16:28 <DIR> content
27.01.2017 14:56 <DIR> acmeimport
27.01.2017 14:56 <DIR> etc
27.04.2017 09:52 <DIR> _oak_index
1 Datei(en), 511 Bytes
7 Verzeichnis(se), 53.706.199.040 Bytes frei
```
Is the same as issueing
```
C:\Users\xne1399>dir C:\Dev\source2\commons\acme-commons-apps\src\main\jcr_root
Datenträger in Laufwerk C: ist System
Volumeseriennummer: F6B5-5EC0
Verzeichnis von C:\Dev\source2\commons\acme-commons-apps\src\main\jcr_root
27.01.2017 14:56 <DIR> .
27.01.2017 14:56 <DIR> ..
27.01.2017 14:56 511 .content.xml
27.01.2017 14:56 <DIR> apps
12.07.2017 16:28 <DIR> content
27.01.2017 14:56 <DIR> acmeimport
27.01.2017 14:56 <DIR> etc
27.04.2017 09:52 <DIR> _oak_index
1 Datei(en), 511 Bytes
7 Verzeichnis(se), 53.706.190.848 Bytes frei
```
Pretty easy, hu?!
---