SoaS
From Doomguy0505
Contents |
Welcome
SoaS is a .bat or .sh file alternate that works on windows and linux (dunno about crappy macs). It is written in C++ and is released under my filler license.
There is also the SoaS programming language family (see SoaS VM).
Download
Here is a list of downloads, if you use linux but do not have debian or a derivative (such as ubuntu), then it's best to compile the source yourself.
The latest version is Revision 02 (r02). The latest source code is Revision 03 (r03) which has a better license.
- Mirror 1: Edward850's Site
- Mirror 2: Doomguy0505's FileFront Site
- NON-GPL VERSION
Old Downloads
- Mirror 1: Edward850's Site
- I haven't used his site until r02
- Mirror 2: Doomguy0505's FileFront Site
Installing
Windows
Copy soasc.exe into the C:\WINDOWS directory
Linux
Binaries
wget http://enz.no-ip.org:9000/Other/Other/soas-deb_r02.tar.bz2 tar -xvjf soas-deb_r02.tar.bz2 sudo cp soasc /bin/soasc
Compiling
Compile the application and copy src/soasc to /bin/
cd PATH_TO_THE_SOURCE_CODE ./configure make sudo cp src/soasc /bin/soasc
Hash Bang (For Linux Users)
To make it executable as a file, you need to set permissions and you need this at the start.
#!/bin/soasc
Structure
SoaS structure is like this:
#!/bin/soasc function funcname set var1=1 set var2=2 set var3=3 set ptr=var1 echo "This is a string\nThis is a string on a newline" echo ~ptr end function
Commands
echo
Syntax
'''echo''' ''expression''
Example
echo "I like to pee"

