Subversion Repositories SvarDOS

Compare Revisions

No changes between revisions

Ignore whitespace Rev 280 → Rev 281

/help/build.sh
0,0 → 1,12
#!/bin/sh
set -e
 
ambpack c help-en help-en.amb
mkdir bin
mkdir help
mkdir appinfo
cp help.bat bin
mv help-*.amb help
echo "version: 20210210" >> appinfo/help.lsm
echo "description: SvarDOS HELP" >> appinfo/help.lsm
zip -9rkm help.zip appinfo bin help
Property changes:
Added: svn:executable
+*
\ No newline at end of property
/help/help-en/index.ama
0,0 → 1,13
 
%hSVARDOS HELP
 
This help documentation is very much work-in-progress, for the time being it
provides only very sparse informations (wanna help building it? get in touch
with us on the SvarDOS mailing list!)
 
=== Chapters =================================================================
 
* %lpkg.ama:Packages management (install/remove software)
* %lnetwork.ama:Networking
 
==============================================================================
/help/help-en/network.ama
0,0 → 1,4
 
%hNetworking
 
WRITE ME!
/help/help-en/pkg.ama
0,0 → 1,15
 
%hSvarDOS packages management
 
To install or remove software on your SvarDOS system, use the "pkg" commands.
 
pkg is a package manager to allow installing new software from SvarDOS
packages and removing exising software from the system. To learn about exact
pkg usage, type pkg /? in the SvarDOS command line shell.
 
You may obtain many SvarDOS packages from the SvarDOS web homepage at
<http://svardos.osdn.io>. If your system is connected to the internet, then
you may also use the SvarDOS "pkgnet" command. pkgnet is a network tool that
makes it easy to search for SvarDOS packages in the SvarDOS repository and
download them right away. Type pkgnet /? in the SvarDOS command line shell to
learn about exact pkgnet usage.
/help/help-en/title
0,0 → 1,0
SVARDOS HELP
/help/help.bat
0,0 → 1,9
@ECHO OFF
IF EXISTS %DOSDIR%\HELP\HELP-%LANG%.AMB GOTO USELANG
AMB %DOSDIR%\HELP\HELP-EN.AMB
GOTO DONE
 
:USELANG
AMB %DOSDIR%\HELP\HELP-%LANG%.AMB
 
:DONE