technology/linux/general/index.md
... ...
@@ -13,6 +13,7 @@
13 13
- [mpv](mpv)
14 14
- [processes](processes)
15 15
- [python](python)
16
+- [rdp](rdp)
16 17
- [rsync](rsync)
17 18
- [rtv](rtv)
18 19
- [sed](sed)
technology/linux/general/rdp.md
... ...
@@ -0,0 +1,7 @@
1
+# rdp
2
+
3
+convert windows saved rdp file to linux editable
4
+```
5
+iconv -f utf-16 -t utf-8 <file>.rdp > <newfile>.rdp
6
+dos2unix <newfile>.rdp
7
+```