Advertisement
NaZaRa

Untitled

Jan 9th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.39 KB | None | 0 0
  1. .
  2. ├── bootseq
  3. │   ├── bootsec
  4. │   │   ├── bootsect
  5. │   │   ├── eltorito
  6. │   │   ├── fatboot
  7. │   │   └── mbr
  8. │   ├── loader
  9. │   │   ├── filesys
  10. │   │   ├── include
  11. │   │   ├── kernels
  12. │   │   ├── loader
  13. │   │   ├── preldr
  14. │   │   ├── shared
  15. │   │   └── term
  16. │   └── util
  17. │   └── fat
  18. ├── docs
  19. │   ├── boot
  20. │   ├── dos
  21. │   ├── OS2
  22. │   │   └── pm
  23. │   ├── PNS
  24. │   └── WIN16
  25. ├── DOS
  26. │   ├── CMD
  27. │   │   ├── append
  28. │   │   ├── assign
  29. │   │   ├── attrib
  30. │   │   ├── basic
  31. │   │   ├── command
  32. │   │   ├── COMP
  33. │   │   ├── debug
  34. │   │   ├── diskcomp
  35. │   │   ├── DISKCOPY
  36. │   │   ├── doskey
  37. │   │   ├── edlin
  38. │   │   ├── find
  39. │   │   ├── help
  40. │   │   ├── label
  41. │   │   ├── mem
  42. │   │   ├── more
  43. │   │   ├── qbasic
  44. │   │   ├── stub
  45. │   │   ├── subst
  46. │   │   └── xcopy
  47. │   ├── include
  48. │   ├── Server
  49. │   │   ├── arch
  50. │   │   ├── base
  51. │   │   ├── commands
  52. │   │   ├── doc
  53. │   │   ├── dosext
  54. │   │   ├── emu-i386
  55. │   │   ├── env
  56. │   │   ├── include
  57. │   │   ├── plugin
  58. │   │   ├── tools
  59. │   │   ├── vdm
  60. │   │   └── xdos
  61. │   ├── shared
  62. │   └── WIN16
  63. │   ├── bin
  64. │   ├── bmp
  65. │   ├── comm
  66. │   ├── commctrl
  67. │   ├── commdlg
  68. │   ├── ddeml
  69. │   ├── debugger
  70. │   ├── dll
  71. │   ├── doc
  72. │   ├── include
  73. │   ├── intp32
  74. │   ├── kernel
  75. │   ├── keyboard
  76. │   ├── krnl386
  77. │   ├── lzexpand
  78. │   ├── makeinclude
  79. │   ├── memory
  80. │   ├── mmsystem
  81. │   ├── modules
  82. │   ├── multimedia
  83. │   ├── pal
  84. │   ├── programs
  85. │   ├── readline
  86. │   ├── samples
  87. │   ├── scripts
  88. │   ├── shell
  89. │   ├── sound
  90. │   ├── template
  91. │   ├── utilities
  92. │   ├── version
  93. │   ├── winkrnl
  94. │   └── winsock
  95. ├── fiasco
  96. ├── filesys
  97. │   ├── ext2fs
  98. │   │   ├── ifs
  99. │   │   ├── mini
  100. │   │   └── util
  101. │   ├── fat
  102. │   │   ├── ifs
  103. │   │   ├── mini
  104. │   │   ├── src
  105. │   │   └── util
  106. │   ├── hpfs
  107. │   │   ├── ifs
  108. │   │   ├── mini
  109. │   │   └── util
  110. │   ├── jfs
  111. │   │   ├── ifs
  112. │   │   ├── mini
  113. │   │   ├── nonsorted
  114. │   │   └── util
  115. │   └── util
  116. │   └── sysinstx
  117. ├── include
  118. │   ├── os3
  119. │   │   ├── gbm
  120. │   │   ├── GDlib
  121. │   │   ├── GL
  122. │   │   ├── jpeglib
  123. │   │   ├── libtiff
  124. │   │   ├── lpng
  125. │   │   ├── ojpeg
  126. │   │   ├── pdcurses
  127. │   │   ├── pm
  128. │   │   └── zlib
  129. │   └── uXFD
  130. ├── Linux
  131. ├── mk
  132. ├── OS2
  133. │   ├── BDNLS
  134. │   │   ├── bdcall32
  135. │   │   └── BDCALLS
  136. │   ├── CMD
  137. │   │   ├── ansi
  138. │   │   ├── attrib
  139. │   │   ├── bldlevel
  140. │   │   ├── chkdsk
  141. │   │   ├── cls
  142. │   │   ├── cmd
  143. │   │   ├── comp
  144. │   │   ├── diskcomp
  145. │   │   ├── diskcopy
  146. │   │   ├── dskxtrct
  147. │   │   ├── e
  148. │   │   ├── eject
  149. │   │   ├── fdisk
  150. │   │   ├── fdiskpm
  151. │   │   ├── find
  152. │   │   ├── format
  153. │   │   ├── help
  154. │   │   ├── helpmsg
  155. │   │   ├── include
  156. │   │   ├── keyb
  157. │   │   ├── label
  158. │   │   ├── LVM
  159. │   │   ├── LVMGUI
  160. │   │   ├── makeini
  161. │   │   ├── minicmd
  162. │   │   ├── mkdir
  163. │   │   ├── mode
  164. │   │   ├── more
  165. │   │   ├── network
  166. │   │   ├── newmbr
  167. │   │   ├── old
  168. │   │   ├── print
  169. │   │   ├── recover
  170. │   │   ├── screenrs
  171. │   │   ├── setboot
  172. │   │   ├── shared
  173. │   │   ├── sort
  174. │   │   ├── sysinstx
  175. │   │   ├── syslevel
  176. │   │   ├── tedit
  177. │   │   ├── tree
  178. │   │   ├── tshell
  179. │   │   ├── undelete
  180. │   │   ├── ver
  181. │   │   ├── vol
  182. │   │   ├── xcopy
  183. │   │   ├── XDFCOPY
  184. │   │   └── zip
  185. │   ├── CPI
  186. │   │   ├── ANSICALL
  187. │   │   ├── bdcall32
  188. │   │   ├── BDCALLS
  189. │   │   ├── bkscalls
  190. │   │   ├── bmscalls
  191. │   │   ├── bvscalls
  192. │   │   ├── doscalls
  193. │   │   ├── kbdcalls
  194. │   │   ├── moncalls
  195. │   │   ├── moucalls
  196. │   │   ├── msg
  197. │   │   ├── nampipes
  198. │   │   ├── nls
  199. │   │   ├── npxemltr
  200. │   │   ├── OS2CHAR
  201. │   │   ├── quecalls
  202. │   │   ├── sesmgr
  203. │   │   ├── shared
  204. │   │   ├── startlw
  205. │   │   ├── sub32
  206. │   │   ├── udsk
  207. │   │   └── viocalls
  208. │   ├── idl
  209. │   ├── MM
  210. │   │   ├── api
  211. │   │   ├── IOProcs
  212. │   │   └── minstall
  213. │   ├── network
  214. │   │   └── tcpip
  215. │   ├── PM
  216. │   │   ├── API
  217. │   │   ├── comm
  218. │   │   ├── pmshell
  219. │   │   └── Server
  220. │   ├── REXX
  221. │   │   ├── cmd
  222. │   │   ├── interp
  223. │   │   ├── libs
  224. │   │   ├── rexx
  225. │   │   ├── rexxapi
  226. │   │   └── rexxinit
  227. │   ├── Server
  228. │   │   ├── examples
  229. │   │   ├── include
  230. │   │   ├── ixf
  231. │   │   ├── kal
  232. │   │   ├── l4
  233. │   │   ├── linux
  234. │   │   ├── OS2
  235. │   │   ├── Shared
  236. │   │   └── win32
  237. │   ├── Shared
  238. │   │   ├── libs
  239. │   │   └── msg
  240. │   ├── SOM
  241. │   │   └── Frameworks
  242. │   ├── tests
  243. │   │   ├── cmd
  244. │   │   ├── test01
  245. │   │   ├── test02
  246. │   │   ├── test03
  247. │   │   ├── test04
  248. │   │   ├── test05
  249. │   │   ├── test06
  250. │   │   ├── test07
  251. │   │   ├── test08
  252. │   │   ├── test09
  253. │   │   ├── test10
  254. │   │   ├── test100
  255. │   │   ├── test101
  256. │   │   ├── test102
  257. │   │   ├── test103
  258. │   │   ├── test104
  259. │   │   ├── test105
  260. │   │   ├── test106
  261. │   │   ├── test107
  262. │   │   ├── test108
  263. │   │   ├── test109
  264. │   │   ├── test11
  265. │   │   ├── test110
  266. │   │   ├── test111
  267. │   │   ├── test112
  268. │   │   ├── test113
  269. │   │   ├── test114
  270. │   │   ├── test115
  271. │   │   ├── test116
  272. │   │   ├── test117
  273. │   │   ├── test118
  274. │   │   ├── test119
  275. │   │   ├── test12
  276. │   │   ├── test120
  277. │   │   ├── test121
  278. │   │   ├── test122
  279. │   │   ├── test123
  280. │   │   ├── test124
  281. │   │   ├── test125
  282. │   │   ├── test126
  283. │   │   ├── test127
  284. │   │   ├── test128
  285. │   │   ├── test129
  286. │   │   ├── test13
  287. │   │   ├── test130
  288. │   │   ├── test131
  289. │   │   ├── test132
  290. │   │   ├── test133
  291. │   │   ├── test134
  292. │   │   ├── test135
  293. │   │   ├── test136
  294. │   │   ├── test137
  295. │   │   ├── test138
  296. │   │   ├── test139
  297. │   │   ├── test14
  298. │   │   ├── test140
  299. │   │   ├── test141
  300. │   │   ├── test142
  301. │   │   ├── test143
  302. │   │   ├── test144
  303. │   │   ├── test145
  304. │   │   ├── test146
  305. │   │   ├── test147
  306. │   │   ├── test148
  307. │   │   ├── test149
  308. │   │   ├── test15
  309. │   │   ├── test150
  310. │   │   ├── test151
  311. │   │   ├── test152
  312. │   │   ├── test153
  313. │   │   ├── test154
  314. │   │   ├── test155
  315. │   │   ├── test156
  316. │   │   ├── test157
  317. │   │   ├── test158
  318. │   │   ├── test159
  319. │   │   ├── test16
  320. │   │   ├── test160
  321. │   │   ├── test161
  322. │   │   ├── test162
  323. │   │   ├── test163
  324. │   │   ├── test164
  325. │   │   ├── test165
  326. │   │   ├── test166
  327. │   │   ├── test167
  328. │   │   ├── test168
  329. │   │   ├── test169
  330. │   │   ├── test17
  331. │   │   ├── test170
  332. │   │   ├── test171
  333. │   │   ├── test172
  334. │   │   ├── test173
  335. │   │   ├── test174
  336. │   │   ├── test175
  337. │   │   ├── test176
  338. │   │   ├── test177
  339. │   │   ├── test178
  340. │   │   ├── test179
  341. │   │   ├── test18
  342. │   │   ├── test180
  343. │   │   ├── test181
  344. │   │   ├── test182
  345. │   │   ├── test183
  346. │   │   ├── test184
  347. │   │   ├── test185
  348. │   │   ├── test186
  349. │   │   ├── test187
  350. │   │   ├── test188
  351. │   │   ├── test189
  352. │   │   ├── test19
  353. │   │   ├── test190
  354. │   │   ├── test191
  355. │   │   ├── test192
  356. │   │   ├── test193
  357. │   │   ├── test194
  358. │   │   ├── test195
  359. │   │   ├── test196
  360. │   │   ├── test197
  361. │   │   ├── test198
  362. │   │   ├── test199
  363. │   │   ├── test20
  364. │   │   ├── test200
  365. │   │   ├── test201
  366. │   │   ├── test202
  367. │   │   ├── test203
  368. │   │   ├── test204
  369. │   │   ├── test205
  370. │   │   ├── test206
  371. │   │   ├── test207
  372. │   │   ├── test208
  373. │   │   ├── test209
  374. │   │   ├── test21
  375. │   │   ├── test210
  376. │   │   ├── test211
  377. │   │   ├── test212
  378. │   │   ├── test213
  379. │   │   ├── test214
  380. │   │   ├── test215
  381. │   │   ├── test216
  382. │   │   ├── test217
  383. │   │   ├── test218
  384. │   │   ├── test219
  385. │   │   ├── test22
  386. │   │   ├── test220
  387. │   │   ├── test221
  388. │   │   ├── test222
  389. │   │   ├── test223
  390. │   │   ├── test224
  391. │   │   ├── test225
  392. │   │   ├── test226
  393. │   │   ├── test227
  394. │   │   ├── test228
  395. │   │   ├── test229
  396. │   │   ├── test23
  397. │   │   ├── test230
  398. │   │   ├── test231
  399. │   │   ├── test232
  400. │   │   ├── test233
  401. │   │   ├── test234
  402. │   │   ├── test235
  403. │   │   ├── test236
  404. │   │   ├── test237
  405. │   │   ├── test238
  406. │   │   ├── test239
  407. │   │   ├── test24
  408. │   │   ├── test240
  409. │   │   ├── test241
  410. │   │   ├── test242
  411. │   │   ├── test243
  412. │   │   ├── test244
  413. │   │   ├── test245
  414. │   │   ├── test246
  415. │   │   ├── test247
  416. │   │   ├── test248
  417. │   │   ├── test249
  418. │   │   ├── test25
  419. │   │   ├── test250
  420. │   │   ├── test251
  421. │   │   ├── test252
  422. │   │   ├── test253
  423. │   │   ├── test254
  424. │   │   ├── test255
  425. │   │   ├── test256
  426. │   │   ├── test257
  427. │   │   ├── test258
  428. │   │   ├── test259
  429. │   │   ├── test26
  430. │   │   ├── test260
  431. │   │   ├── test261
  432. │   │   ├── test262
  433. │   │   ├── test263
  434. │   │   ├── test264
  435. │   │   ├── test265
  436. │   │   ├── test266
  437. │   │   ├── test267
  438. │   │   ├── test268
  439. │   │   ├── test269
  440. │   │   ├── test27
  441. │   │   ├── test270
  442. │   │   ├── test271
  443. │   │   ├── test272
  444. │   │   ├── test273
  445. │   │   ├── test274
  446. │   │   ├── test275
  447. │   │   ├── test276
  448. │   │   ├── test277
  449. │   │   ├── test278
  450. │   │   ├── test279
  451. │   │   ├── test28
  452. │   │   ├── test280
  453. │   │   ├── test281
  454. │   │   ├── test282
  455. │   │   ├── test283
  456. │   │   ├── test284
  457. │   │   ├── test285
  458. │   │   ├── test286
  459. │   │   ├── test287
  460. │   │   ├── test288
  461. │   │   ├── test289
  462. │   │   ├── test29
  463. │   │   ├── test290
  464. │   │   ├── test291
  465. │   │   ├── test292
  466. │   │   ├── test293
  467. │   │   ├── test294
  468. │   │   ├── test295
  469. │   │   ├── test296
  470. │   │   ├── test297
  471. │   │   ├── test298
  472. │   │   ├── test299
  473. │   │   ├── test30
  474. │   │   ├── test300
  475. │   │   ├── test301
  476. │   │   ├── test302
  477. │   │   ├── test303
  478. │   │   ├── test304
  479. │   │   ├── test305
  480. │   │   ├── test306
  481. │   │   ├── test307
  482. │   │   ├── test308
  483. │   │   ├── test309
  484. │   │   ├── test310
  485. │   │   ├── test311
  486. │   │   ├── test32
  487. │   │   ├── test33
  488. │   │   ├── test34
  489. │   │   ├── test35
  490. │   │   ├── test36
  491. │   │   ├── test37
  492. │   │   ├── test38
  493. │   │   ├── test39
  494. │   │   ├── test40
  495. │   │   ├── test41
  496. │   │   ├── test42
  497. │   │   ├── test43
  498. │   │   ├── test44
  499. │   │   ├── test45
  500. │   │   ├── test46
  501. │   │   ├── test47
  502. │   │   ├── test48
  503. │   │   ├── test49
  504. │   │   ├── test50
  505. │   │   ├── test51
  506. │   │   ├── test52
  507. │   │   ├── test53
  508. │   │   ├── test54
  509. │   │   ├── test55
  510. │   │   ├── test56
  511. │   │   ├── test57
  512. │   │   ├── test58
  513. │   │   ├── test59
  514. │   │   ├── test60
  515. │   │   ├── test61
  516. │   │   ├── test62
  517. │   │   ├── test63
  518. │   │   ├── test64
  519. │   │   ├── test65
  520. │   │   ├── test66
  521. │   │   ├── test67
  522. │   │   ├── test68
  523. │   │   ├── test69
  524. │   │   ├── test70
  525. │   │   ├── test71
  526. │   │   ├── test72
  527. │   │   ├── test73
  528. │   │   ├── test74
  529. │   │   ├── test75
  530. │   │   ├── test76
  531. │   │   ├── test77
  532. │   │   ├── test78
  533. │   │   ├── test79
  534. │   │   ├── test80
  535. │   │   ├── test81
  536. │   │   ├── test82
  537. │   │   ├── test83
  538. │   │   ├── test84
  539. │   │   ├── test85
  540. │   │   ├── test86
  541. │   │   ├── test87
  542. │   │   ├── test88
  543. │   │   ├── test89
  544. │   │   ├── test90
  545. │   │   ├── test91
  546. │   │   ├── test92
  547. │   │   ├── test93
  548. │   │   ├── test94
  549. │   │   ├── test95
  550. │   │   ├── test96
  551. │   │   ├── test97
  552. │   │   ├── test98
  553. │   │   └── test99
  554. │   ├── UtlAPI
  555. │   └── WPS
  556. │   └── PMWP
  557. ├── pistachio
  558. ├── PKGS
  559. ├── PNS
  560. ├── tools
  561. │   ├── awk
  562. │   ├── bff
  563. │   ├── critstrs
  564. │   ├── freeinst
  565. │   ├── genext2fs
  566. │   ├── hlldump
  567. │   ├── include
  568. │   │   ├── libIDL
  569. │   │   └── sys
  570. │   ├── LEX
  571. │   │   └── l
  572. │   ├── libmmap
  573. │   ├── ltools
  574. │   │   └── cmd
  575. │   ├── lxlite
  576. │   │   ├── common
  577. │   │   ├── doc
  578. │   │   └── ptrs
  579. │   ├── MAPSYM
  580. │   ├── mkctxt
  581. │   ├── mkmsgf
  582. │   ├── os2386
  583. │   │   └── libc
  584. │   ├── qemu-img
  585. │   │   └── docs
  586. │   ├── renmodul
  587. │   ├── rexxwrap
  588. │   │   ├── common
  589. │   │   ├── des
  590. │   │   ├── doc
  591. │   │   └── zlib
  592. │   ├── sc
  593. │   ├── scripts
  594. │   ├── SED
  595. │   ├── shared
  596. │   │   ├── idl
  597. │   │   └── z
  598. │   ├── somcpp
  599. │   ├── somipc
  600. │   ├── UNIAPI
  601. │   ├── winrc
  602. │   └── yacc
  603. ├── UNI
  604. │   ├── bios
  605. │   ├── DOS
  606. │   ├── os2
  607. │   │   ├── cpi
  608. │   │   └── pm
  609. │   └── shared
  610. │   └── utlapi
  611. └── win32
  612.  
  613. 610 directories
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement