And So Forth

Total Page:16

File Type:pdf, Size:1020Kb

And So Forth bigFORTH+MINOΣ Documentation contains And so Forth. Bernd Paysan J.L. Bezemer (And so Forth. ) c 1991–2003 by Bernd Paysan Copyleft — all rights reversed Dokumentation Introduction III Introduction 1. “Real Programmers don’t Read Manuals” ell, it should be more “Real Programmers don’t Write Manuals”, as there have been some complaints that the free version of bigFORTH doesn’t contain a free Wmanual — the only available manual so far was the German manual for the commercial version. Since bigFORTH is a highly complex system, a manual is necessary. However, to get started, you could as well just start bigFORTH and play around with it. If you then still have questions, the lecture of this manual should clairify the issues. Note however that this is still work in process and the manual is neither complete nor accurate. If you feel able to contribute, do so! We propose to read the documentation part completely and try the examples. If there are questions left, you can use index and reference part to learn more. This manual assumes that you can use your operating system. The final version of the manual should contain a real Forth course and it should be possible to replace a Forth introduction with it; however this is far from complete now. 2. History bigFORTH bases on a 32 bit port of the volksFORTH-83 authors. volksFORTH-83 is a public domain system that is available for Atari ST, IBM PC and C64 (there called UltraForth). It’s a 16 bit implementation with the corresponding limitations like a 64 KByte large address space. volksFORTH bases to some extents on the Perry/Laxen-F83 from the Forth Interest Group. The volksFORTH authors started at the end of 1987 to port the system to 32 bits, and convert the compiler so that it creates real 68k machine code. To some engaged volks- FORTH users they gave running prototypes. The system then was called turboFORTH and should have been distributed commercially, but the project almost died. However, one of these engaged volksFORTH users continued development and after two years of development, bigFORTH 1.0 for the Atari ST was released in summer 1990. In 1992, at the German Forth-Tagung, Ewald Rieger and Friedl Amend asked me for a 386 version of bigFORTH, and Ewald Rieger sponsored the PC. 1995, this version (bigFORTH-DOS 1.20) was released, together with the last Atari ST version. The DOS version contained a object oriented widget toolkit which used VGA textmode to display. To continue development of the 386 version, Ewald Rieger sponsored another PC, with the goal to have bigFORTH run on OS/2, Windows NT, or Linux. I first started porting to OS/2, and after Linux got shared libraries, I ported over to Linux. In august 1996, after finishing my diploma thesis, I started on MINOΣ, the graphical user interface for bigFORTH, a sequel to the text mode UI of bigFORTH-DOS. On the Forth-Tagung 1997, I presented the first results and soon afterwards put a demo on my homepage. Later in 1997, the license has been decided, it’s GPL (see page 247). IV Introduction bigFORTH 3. Returning Thanks I want to thank the volksFORTH authors Dietrich Weineck, Georg Rehfeld and Klaus Schleisiek, since without their work and without their volksFORTH big- FORTH woudn’t exist. Especially I’d like to thank Bernd Pennemann here, for his support cleared all open questions (including those of copyright), and whos recommenda- tions allowed to complete the system. Furthermore he suggested (among a list of other suggestions) the name. Further special thanks to Ewald Rieger, who supported the development over the time, and many thanks to the testers for their bug reports and suggestions. Thanks also to Nikolaus Heusler who lectured the original manual. I’d also like to thank Charles H. Moore, for his wonderful Forth, Donald E. Knuth, for his TEX, Linus Torvalds for Linux, and Richard M. Stallman for the GNU public license and the GNU tools he started to develop. 4. Target Market Forth has traditinally been much more a public domain language, that — unlike COBOL, Fortran, C or ADA — wasn’t supported by neither the industry nor the military, and — unlike Pascal resp. Modula II — also wasn’t developed on universities. Forth’s development lies mostly in the hand of engaged small companies or users, who have some difficulties to match offerings of other languages. bigFORTH should fill this gap and provide a modern development environment, that doesn’t capitulate from large problems and create code that is in speed competitive to other high level languages. 5. Copyleft bigFORTH is copyrighted by Bernd Paysan, and available under GPL. The manual here is also available under GPL, with excempt of the GPL text included here, which may not be modified. M¨unchen, in December 1999 Bernd Paysan Dokumentation Contents V Contents Introduction III 1. “Real Programmers don’t Read Manuals” .................. III 2. History ...................................... III 3. Returning Thanks ................................ IV 4. Target Market .................................. IV 5. Copyleft ..................................... IV Contents V 1 Installation 1 1. Installing on Linux ............................... 1 2. Installation on Windows ............................ 1 3. Editor Commands ................................ 2 4. Notation von Befehlen ............................. 2 5. Zahleneingaben ................................. 3 6. Notation von Sondertasten ........................... 4 2 Tutorial 5 1. Starting the System ............................... 5 2. End of a Session ................................. 5 3. The Line Editor ................................. 6 4. Error Messages ................................. 6 3 And so Forth. 7 1. Preface ...................................... 7 1.1. Copyright ................................ 7 1.2. Introduction ............................... 7 1.3. About this primer ............................ 7 2. Forth fundamentals ............................... 8 2.1. Making calculations without parenthesis ............... 8 2.2. Manipulating the stack ......................... 9 2.3. Deep stack manipulators ........................ 10 2.4. Pass arguments to functions ...................... 11 2.5. Making your own words ........................ 11 2.6. Adding comment ............................ 12 2.7. Text-format of Forth source ...................... 12 2.8. Displaying string constants ....................... 13 2.9. Declaring variables ........................... 13 2.10. Using variables ............................. 13 2.11. Built-in variables ............................ 13 2.12. What is a cell? ............................. 14 2.13. Declaring and using constants ..................... 14 2.14. Built-in constants ............................ 14 2.15. Using booleans ............................. 14 VI CONTENTS bigFORTH 2.16. IF-ELSE constructs ........................... 15 2.17. FOR-NEXT constructs ......................... 15 2.18. WHILE-DO constructs ......................... 16 2.19. REPEAT-UNTIL constructs ...................... 17 2.20. Infinite loops .............................. 17 2.21. Getting a number from the keyboard ................. 17 2.22. Aligning numbers ............................ 18 3. Arrays and strings ............................... 18 3.1. Declaring arrays of numbers ...................... 18 3.2. Using arrays of numbers ........................ 18 3.3. Creating arrays of constants ...................... 19 3.4. Using arrays of constants ........................ 19 3.5. Creating strings ............................. 19 3.6. Initializing strings ............................ 20 3.7. Getting the length of a string ..................... 20 3.8. Printing a string variable ........................ 21 3.9. Copying a string variable ........................ 22 3.10. Slicing strings .............................. 24 3.11. Appending strings ........................... 26 3.12. Comparing strings ........................... 26 3.13. Removing trailing spaces ........................ 27 3.14. String constants and string variables ................. 27 3.15. The count byte ............................. 28 3.16. Printing individual characters ..................... 28 3.17. Getting ASCII values .......................... 28 3.18. When to use [CHAR] or CHAR .................... 28 3.19. Printing spaces ............................. 29 3.20. Fetching individual characters ..................... 30 3.21. Storing individual characters ...................... 30 3.22. Getting a string from the keyboard .................. 32 3.23. What is the TIB? ............................ 33 3.24. What is the PAD? ........................... 33 3.25. How do I use TIB and PAD? ..................... 33 3.26. Temporary string constants ...................... 33 3.27. Simple parsing ............................. 34 3.28. Converting a string to a number .................... 35 3.29. Controlling the radix .......................... 36 3.30. Pictured numeric output ........................ 39 3.31. Converting a number to a string .................... 41 4. Stacks and colon definitions .......................... 42 4.1. The address of a colon-definition ................... 42 4.2. Vectored execution ........................... 42 4.3. Using values ............................... 43 4.4. The stacks ................................ 44 4.5. Saving temporary values ........................ 44 4.6. The Return Stack and the DO..LOOP ................ 46 4.7. Other Return Stack manipulations .................. 47 4.8. Altering the flow with the
Recommended publications
  • Sample Docx File Downloadable Right Here
    Sample docx file downloadable right here. This is the most likely source of the files for this repo and will provide you with a basic understanding of how git works using Linux's Linux repository repository. On our server side of the system, we can use git-reload, that is, we need only the root directory of every binary and it will be displayed. So just install git with a basic command from the "packages" field and make a new directory to run git:reload on. Open the newly created copy and make a new git backup of the file, in the name of the original copy. Run git pull to generate an updated version to build this code into one file of every binary you wish to get a git version to build into. (See also the article). Now just get the latest release and place the git remote in that directory you just downloaded. The remote is now going to show up in one directory (from your local machine or other work you will never even have to write, you could change a few values on the build machine later). After the build gets started you will be able to start that next step with: $ cd git-reload then start from the root directory. Note to developers: If you forget to go over the manual, if they can't figure out the new command and there's only one change that looks like we need to add it to the repo right after, this will likely screw you out.
    [Show full text]
  • Latexsample-Thesis
    INTEGRAL ESTIMATION IN QUANTUM PHYSICS by Jane Doe A dissertation submitted to the faculty of The University of Utah in partial fulfillment of the requirements for the degree of Doctor of Philosophy Department of Mathematics The University of Utah May 2016 Copyright c Jane Doe 2016 All Rights Reserved The University of Utah Graduate School STATEMENT OF DISSERTATION APPROVAL The dissertation of Jane Doe has been approved by the following supervisory committee members: Cornelius L´anczos , Chair(s) 17 Feb 2016 Date Approved Hans Bethe , Member 17 Feb 2016 Date Approved Niels Bohr , Member 17 Feb 2016 Date Approved Max Born , Member 17 Feb 2016 Date Approved Paul A. M. Dirac , Member 17 Feb 2016 Date Approved by Petrus Marcus Aurelius Featherstone-Hough , Chair/Dean of the Department/College/School of Mathematics and by Alice B. Toklas , Dean of The Graduate School. ABSTRACT Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah.
    [Show full text]
  • Grace FAQ (For Grace-5.1.23)
    Grace FAQ (for Grace-5.1.23) by the Grace Team 12.06.2010 This document contains Frequently Asked Questions (FAQ) about Grace, a WYSIWYG 2D plotting tool for scientic data. (A German translation of this document, made by Tobias Brinkert, is available here: Grace FAQ <http://www.semibyte.de/dokuwiki/informatik:linux:xmgrace:grace_faq> .) Contents 1 General Questions 5 1.1 What is Grace?...........................................5 1.2 Where can I get Grace?.......................................5 1.3 Where can I get the most recent information about Grace?...................5 1.4 What is the dierence between Xmgr and Grace?........................5 1.5 Why did you change the name?..................................6 1.6 Is Grace free?............................................6 1.7 Who wrote Grace?.........................................6 1.8 Is there a PostscriptjLaTeXjHTMLjSGML version of this document?.............6 2 Getting Help 6 2.1 Are there any books about Grace?.................................6 2.2 Is there a User's Guide available for Grace?...........................7 2.3 Is there a Tutorial available for Grace?..............................7 2.4 Where do I get support for Grace?................................7 2.5 Is there a newsgroup devoted to Grace?..............................7 2.6 Is there a mailing list for Grace?..................................7 2.7 Is there a forum for Grace?.....................................8 3 Providing Help: Finding and Reporting Bugs8 3.1 I think I found a bug in Grace! How do I report
    [Show full text]
  • Linux Programming [R15a0527] Lecture Notes
    LINUX PROGRAMMING [R15A0527] LECTURE NOTES B.TECH IV YEAR – I SEM (R15) (2019-2020) DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING MALLA REDDY COLLEGE OF ENGINEERING & TECHNOLOGY (Autonomous Institution – UGC, Govt. of India) Recognized under 2(f) and 12 (B) of UGC ACT 1956 (Affiliated to JNTUH, Hyderabad, Approved by AICTE - Accredited by NBA & NAAC – ‘A’ Grade - ISO 9001:2015 Certified) Maisammaguda, Dhulapally (Post Via. Hakimpet), Secunderabad – 500100, Telangana State, India Syllabus (R15A0527) LINUX PROGRAMMING Objectives: • To develop the skills necessary for Unix systems programming including file system programming, process and signal management, and interprocess communication. • To make effective use of Unix utilities and Shell scripting language such as bash. • To develop the basic skills required to write network programs using Sockets. UNIT I Linux Utilities - File handling utilities, Security by file permissions, Process utilities, Disk utilities, Networking commands, Filters, Text processing utilities and Backup utilities. Sed- Scripts, Operation, Addresses, Commands, Applications, awk- Execution, Fields and Records, Scripts, Operation, Patterns, Actions, Associative Arrays, String and Mathematical functions, System commands in awk, Applications. Shell programming with Bourne again shell(bash) - Introduction, shell responsibilities, pipes and Redirection, here documents, running a shell script, the shell as a programming language, shell meta characters, file name substitution, shell variables, command substitution, shell
    [Show full text]
  • Integral Estimation in Quantum Physics
    INTEGRAL ESTIMATION IN QUANTUM PHYSICS by Jane Doe A dissertation submitted to the faculty of The University of Utah in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Mathematical Physics Department of Mathematics The University of Utah May 2016 Copyright c Jane Doe 2016 All Rights Reserved The University of Utah Graduate School STATEMENT OF DISSERTATION APPROVAL The dissertation of Jane Doe has been approved by the following supervisory committee members: Cornelius L´anczos , Chair(s) 17 Feb 2016 Date Approved Hans Bethe , Member 17 Feb 2016 Date Approved Niels Bohr , Member 17 Feb 2016 Date Approved Max Born , Member 17 Feb 2016 Date Approved Paul A. M. Dirac , Member 17 Feb 2016 Date Approved by Petrus Marcus Aurelius Featherstone-Hough , Chair/Dean of the Department/College/School of Mathematics and by Alice B. Toklas , Dean of The Graduate School. ABSTRACT Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah. Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah.
    [Show full text]
  • Administrator Manual Revision: 81E8b53
    Bright Cluster Manager 7.0 Administrator Manual Revision: 81e8b53 Date: Mon Jun 21 2021 ©2015 Bright Computing, Inc. All Rights Reserved. This manual or parts thereof may not be reproduced in any form unless permitted by contract or by written permission of Bright Computing, Inc. Trademarks Linux is a registered trademark of Linus Torvalds. PathScale is a regis- tered trademark of Cray, Inc. Red Hat and all Red Hat-based trademarks are trademarks or registered trademarks of Red Hat, Inc. SUSE is a reg- istered trademark of Novell, Inc. PGI is a registered trademark of The Portland Group Compiler Technology, STMicroelectronics, Inc. SGE is a trademark of Sun Microsystems, Inc. FLEXlm is a registered trademark of Globetrotter Software, Inc. Maui Cluster Scheduler is a trademark of Adaptive Computing, Inc. ScaleMP is a registered trademark of ScaleMP, Inc. All other trademarks are the property of their respective owners. Rights and Restrictions All statements, specifications, recommendations, and technical informa- tion contained herein are current or planned as of the date of publication of this document. They are reliable as of the time of this writing and are presented without warranty of any kind, expressed or implied. Bright Computing, Inc. shall not be liable for technical or editorial errors or omissions which may occur in this document. Bright Computing, Inc. shall not be liable for any damages resulting from the use of this docu- ment. Limitation of Liability and Damages Pertaining to Bright Computing, Inc. The Bright Cluster Manager product principally consists of free software that is licensed by the Linux authors free of charge.
    [Show full text]
  • HPC BAS4 User's Guide
    HPC HPC BAS4 User's Guide REFERENCE 86 A2 29ER 08 HPC HPC BAS4 User's Guide Hardware and Software December 2007 BULL CEDOC 357 AVENUE PATTON B.P.20845 49008 ANGERS CEDEX 01 FRANCE REFERENCE 86 A2 29ER 08 The following copyright notice protects this book under Copyright laws which prohibit such actions as, but not limited to, copying, distributing, modifying, and making derivative works. Copyright Bull SAS 2005, 2007 Printed in France Suggestions and criticisms concerning the form, content, and presentation of this book are invited. A form is provided at the end of this book for this purpose. To order additional copies of this book or other Bull Technical Publications, you are invited to use the Ordering Form also provided at the end of this book. Trademarks and Acknowledgements We acknowledge the rights of the proprietors of the trademarks mentioned in this manual. All brand names and software and hardware product names are subject to trademark and/or patent protection. Quoting of brand and product names is for information purposes only and does not represent trademark misuse. The information in this document is subject to change without notice. Bull will not be liable for errors contained herein, or for incidental or consequential damages in connection with the use of this material. Preface Scope and Objectives The purpose of this guide is to describe the tools and libraries available as part of the Bull Advanced Server (BAS) delivery which allow the development and testing of application programs on the Bull High Performance Computing (HPC) clusters. In addition various open source and proprietary tools are described.
    [Show full text]
  • Digital Notes on Linux Programming (R17a0525)
    DIGITAL NOTES ON LINUX PROGRAMMING (R17A0525) B.TECH III YEAR - I SEM (2019-20) DEPARTMENT OF INFORMATION TECHNOLOGY MALLA REDDY COLLEGE OF ENGINEERING & TECHNOLOGY (Autonomous Institution – UGC, Govt. of India) (Affiliated to JNTUH, Hyderabad, Approved by AICTE - Accredited by NBA & NAAC – ‘A’ Grade - ISO 9001:2015 Certified) Maisammaguda, Dhulapally (Post Via. Hakimpet), Secunderabad – 500100, Telangana State, INDIA. Linux Programming Page 1 MALLA REDDY COLLEGE OF ENGINEERING & TECHNOLOGY DEPARTMENT OF INFORMATION TECHNOLOGY III Year B.Tech IT – I Sem L T /P/D C 4 - / - / - 4 (R17A0525)LINUX PROGRAMMING Objectives: To develop the skills necessary for Unix systems programming including file system programming, process and signal management, and interprocess communication. To make effective use of Unix utilities and Shell scripting language such as bash. To develop the basic skills required to write network programs using Sockets. UNIT I Linux Utilities-File handling utilities, Security by file permissions, Process utilities, Disk utilities, Networking commands, Filters, Text processing utilities and Backup utilities. Sed-Scripts, Operation, Addresses. Awk- Execution, Fields and Records, Scripts, Operation, Patterns, Actions. Shell programming with Bourne again shell(bash)- Introduction, shell responsibilities, pipes and Redirection, here documents, running a shell script, the shell as a programming language, shell meta characters, file name substitution, shell variables, shell commands, the environment, quoting, test command, control structures, arithmetic in shell, shell script examples. UNIT II Files and Directories- File Concept, File types, File System Structure, file metadata- Inodes, kernel support for files, system calls for file I/O operations- open, create, read, write, close, lseek, dup2,file status information-stat family, file and record locking-lockf and fcntl functions, file permissions - chmod, fchmod, file ownership- chown, lchown, fchown, links-soft links and hard links – symlink, link, unlink.
    [Show full text]
  • Unix Et Programmation Shell
    Unix et Programmation Shell Philippe Langevin d´epartment d'informatique UFR sciences et technique universit´edu sud Toulon Var Automne 2013 Philippe Langevin (imath/ustv) Unix et Programmation Shell Automne 2013 1 / 33 document brouillon en r´evision site du cours : http://langevin.univ-tln.fr/cours/UPS/upsh.html localisation du fichier : http://langevin.univ-tln.fr/cours/UPS/doc/intro.pdf Philippe Langevin (imath/ustv) Unix et Programmation Shell Automne 2013 2 / 33 derni`eresmodifications intro.tex 2013-06-23 10:07:23.697660496 +0200 macros.tex 2013-06-22 23:42:16.868263946 +0200 prologue.tex 2013-06-22 22:10:45.967471216 +0200 upsh.tex 2013-06-22 11:24:27.941744751 +0200 tools.tex 2013-06-22 11:24:27.940741957 +0200 term.tex 2013-06-22 11:24:27.934741399 +0200 syntaxe.tex 2013-06-22 11:24:27.931741678 +0200 proc.tex 2013-06-22 11:24:27.927741678 +0200 piped.tex 2013-06-22 11:24:27.922741399 +0200 perm.tex 2013-06-22 11:24:27.921741678 +0200 part.tex 2013-06-22 11:24:27.918742237 +0200 man.tex 2013-06-22 11:24:27.911741957 +0200 langage.tex 2013-06-23 10:04:58.364659987 +0200 file.tex 2013-06-22 11:24:27.896741119 +0200 dup.tex 2013-06-22 11:24:27.885741678 +0200 fic.tex 2013-06-22 11:24:27.885741678 +0200 bash.tex 2013-06-22 11:24:27.881741957 +0200 Philippe Langevin (imath/ustv) Unix et Programmation Shell Automne 2013 3 / 33 shell unix 1 - shell unix origine unices GNU/linux distribution shell unix GUI vs CLI exemple Philippe Langevin (imath/ustv) Unix et Programmation Shell Automne 2013 4 / 33 1969 Ken Thompson cr´eele syst`eme UNICS 1971 Dennis Ritchie cr´ee Le langage C utile pour le d´eveloppement d'unix.
    [Show full text]
  • Metasploit Framework User Guide
    Metasploit Framework User Guide Version 2.4 http://www.metasploit.com/ Contents 1 Introduction 3 2 Installation 4 2.1 Installation on Unix ......................... 4 2.2 Installation on Windows ....................... 4 2.3 Platform Caveats ........................... 5 2.4 Supported Operating Systems .................... 5 2.5 Updating the Framework ...................... 5 3 Getting Started 7 3.1 The Console Interface ........................ 7 3.2 The Command Line Interface .................... 8 3.3 The Web Interface .......................... 8 4 The Environment 9 4.1 Global Environment ......................... 9 4.2 Temporary Environment ....................... 10 4.3 Saved Environment .......................... 10 4.4 Environment Efficiency ........................ 11 4.5 Environment Variables ........................ 11 4.5.1 DebugLevel .......................... 12 4.5.2 Logging ............................ 12 4.5.3 LogDir ............................. 12 4.5.4 Encoder ............................ 12 4.5.5 EncoderDontFallThrough .................. 12 4.5.6 Nop .............................. 13 4.5.7 NopDontFallThrough .................... 13 4.5.8 RandomNops ......................... 13 4.5.9 ConnectTimeout ....................... 13 4.5.10 RecvTimeout ......................... 13 4.5.11 RecvTimeoutLoop ...................... 13 4.5.12 Proxies ............................ 14 4.5.13 ForceSSL ........................... 14 4.5.14 UdpSourceIp ......................... 14 1 4.5.15 NinjaHost ........................... 14 4.5.16 NinjaPort
    [Show full text]
  • Administrator Manual Revision: 58F161e
    Bright Cluster Manager 8.1 Administrator Manual Revision: 58f161e Date: Wed Sep 29 2021 ©2020 Bright Computing, Inc. All Rights Reserved. This manual or parts thereof may not be reproduced in any form unless permitted by contract or by written permission of Bright Computing, Inc. Trademarks Linux is a registered trademark of Linus Torvalds. PathScale is a registered trademark of Cray, Inc. Red Hat and all Red Hat-based trademarks are trademarks or registered trademarks of Red Hat, Inc. SUSE is a registered trademark of Novell, Inc. PGI is a registered trademark of NVIDIA Corporation. FLEXlm is a registered trademark of Flexera Software, Inc. PBS Professional, PBS Pro, and Green Provisioning are trademarks of Altair Engineering, Inc. All other trademarks are the property of their respective owners. Rights and Restrictions All statements, specifications, recommendations, and technical information contained herein are current or planned as of the date of publication of this document. They are reliable as of the time of this writing and are presented without warranty of any kind, expressed or implied. Bright Computing, Inc. shall not be liable for technical or editorial errors or omissions which may occur in this document. Bright Computing, Inc. shall not be liable for any damages resulting from the use of this document. Limitation of Liability and Damages Pertaining to Bright Computing, Inc. The Bright Cluster Manager product principally consists of free software that is licensed by the Linux authors free of charge. Bright Computing, Inc. shall have no liability nor will Bright Computing, Inc. provide any warranty for the Bright Cluster Manager to the extent that is permitted by law.
    [Show full text]
  • NAME DIFFERENCES BETWEEN GNU Parallel and ALTERNATIVES
    GNU Parallel alternatives NAME parallel_alternatives - Alternatives to GNU parallel DIFFERENCES BETWEEN GNU Parallel AND ALTERNATIVES There are a lot programs that share functionality with GNU parallel. Some of these are specialized tools, and while GNU parallel can emulate many of them, a specialized tool can be betterat a given task. GNU parallel strives to include the best of thegeneral functionality without sacrificing ease of use. parallel has existed since 2002-01-06 and as GNU parallel since2010. A lot of the alternatives have not had the vitality to survivethat long, but have come and gone during that time. GNU parallel is actively maintained with a new release every monthsince 2010. Most other alternatives are fleeting interests of thedevelopers with irregular releases and only maintained for a fewyears. SUMMARY LEGEND The following features are in some of the comparable tools: Inputs I1. Arguments can be read from stdin I2. Arguments can be read from a file I3. Arguments can be read from multiple files I4. Arguments can be read from command line I5. Arguments can be read from a table I6. Arguments can be read from the same file using #! (shebang) I7. Line oriented input as default (Quoting of special chars not needed) Manipulation of input M1. Composed command M2. Multiple arguments can fill up an execution line M3. Arguments can be put anywhere in the execution line M4. Multiple arguments can be put anywhere in the execution line M5. Arguments can be replaced with context M6. Input can be treated as the complete command line Outputs O1. Grouping output so output from different jobs do not mix O2.
    [Show full text]