Difference between revisions of "Applications and libraries/Operating system"

From HaskellWiki
Jump to navigation Jump to search
(Having moved GetOpt from the uncategorised section of Libraries and tools to here)
(Adding a link to Haskell Shell (seems to be implemented in Haskell 1.3))
Line 1: Line 1:
 
__TOC__
 
__TOC__
   
== Self-standing implementations of operating systems in Haskell ==
+
== Standalone implementations of operating systems in Haskell ==
 
* [http://www.cse.ogi.edu/~hallgren/House/ House]
 
* [http://www.cse.ogi.edu/~hallgren/House/ House]
   
Line 8: Line 8:
 
;[http://www.volker-wysk.de/hsshellscript HsShellScript]
 
;[http://www.volker-wysk.de/hsshellscript HsShellScript]
 
:A library for using Haskell for tasks which are usually done by shell scripts, e.g. command line parsing, analysing paths, etc. It can be used also for tasks usually done [http://haskell.org/ghc/docs/latest/html/libraries/base/System-Console-GetOpt.html GetOpt] (a module for GNU-/POSIX-like option handling of commandline arguments). But also for many other things.
 
:A library for using Haskell for tasks which are usually done by shell scripts, e.g. command line parsing, analysing paths, etc. It can be used also for tasks usually done [http://haskell.org/ghc/docs/latest/html/libraries/base/System-Console-GetOpt.html GetOpt] (a module for GNU-/POSIX-like option handling of commandline arguments). But also for many other things.
  +
  +
;The [http://www.informatik.uni-bonn.de/~ralf/software/examples/Hsh.html Haskell Shell]
  +
:on the [http://www.informatik.uni-bonn.de/~ralf/software.html software] page by [http://www.informatik.uni-bonn.de/~ralf/ Ralf Hinze]. The Haskell Shell seems to be written in Haskell 1.3.
  +
   
   

Revision as of 23:00, 23 March 2006

Standalone implementations of operating systems in Haskell

Shell

HsShellScript
A library for using Haskell for tasks which are usually done by shell scripts, e.g. command line parsing, analysing paths, etc. It can be used also for tasks usually done GetOpt (a module for GNU-/POSIX-like option handling of commandline arguments). But also for many other things.
The Haskell Shell
on the software page by Ralf Hinze. The Haskell Shell seems to be written in Haskell 1.3.


Pure functional shells
useful link collection on Lambda the Ultimate