Subversion Repositories SvarDOS

Rev

Rev 582 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
582 mateuszvis 1
<!DOCTYPE html>
2
<html lang="en">
3
  <head>
4
    <title>SvarCOM</title>
5
    <meta name="keywords" content="svardos,command.com,shell">
6
    <meta name="author" content="Mateusz Viste">
7
    <meta name="robots" content="index, follow">
8
    <meta charset="UTF-8">
9
    <link rel="stylesheet" href="style.css">
10
  </head>
11
  <body>
12
 
13
  <!-- ad button starts here -->
14
  <script src="http://mateusz.viste.fr/getmsg.php?align=right" type="text/javascript"></script>
15
  <!-- ad button ends here -->
16
 
17
  <h1>SvarCOM</h1>
18
  <p class="copyr">a nimble shell for SvarDOS</p>
19
 
20
  <p>SvarCOM is the SvarDOS command line interpreter, known usually under the name "COMMAND.COM". It is designed and maintained by <a href="http://mateusz.viste.fr" class="mateusz">Mateusz Viste</a>, and distributed under the terms of the MIT license.</p>
21
 
22
  <p>For the time being, it is a work-in-progress project that - although functional - is not entirely polished yet and might miss a few bits and pieces. SvarCOM version 2022.0 must be considered a "preview" version. See the documentation included in the zip file for details.</p>
23
 
1107 bttr 24
  <p>SvarCOM is minimalist and I'd like to keep it that way. It aims to be functionally equivalent to COMMAND.COM from MS-DOS 5.x/6.x. No LFN support.</p>
582 mateuszvis 25
 
26
  <p>As of version 2022.0, SvarCOM's resident footprint is under 2 KiB.</p>
27
 
28
  <h2>DOWNLOAD</h2>
29
 
30
  <table>
31
  <?php
32
    $flist = scandir("./", SCANDIR_SORT_DESCENDING);
33
    foreach ($flist as $f) {
34
      if (strpos($f, '.zip') == false) continue;
35
      if (!stristr($f, 'svarcom')) continue;
36
      $fsz = intval(filesize($f) / 1024);
37
      echo "<tr><td><a href=\"{$f}\">{$f}</a></td><td class=\"siz\"> {$fsz} KiB</td></tr>\n";
38
    }
39
  ?>
40
  </table>
41
 
42
  <h2>LICENSE (MIT)</h2>
43
 
44
  <p>Copyright &copy; 2021-2022 Mateusz Viste</p>
45
 
46
  <p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
47
 
48
  <p>- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
49
 
50
  <p>- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
51
 
52
  </body>
53
</html>