shell embedding and options

shell embedding Shells can be embedded on the command line, or in other words, the command line scan can spawn new processes containing a fork of the current shell. You can use variables to prove that new shells are created. In the screenshot below, the variable $var1 only exists in the (temporary) sub shell. You … Read more

control operators

In this post we put more than one command on the command line using control operators. We also briefly discuss related parameters ($?) and similar special characters(&). ; semicolon You can put two or more commands on the same line separated by a semicolon ; . The shell will scan the line until it reaches … Read more

Laravel “Framework” Basic Task List Tutorial

Basic Task List Introduction Installation Prepping The Database Database Migrations Eloquent Models Routing Stubbing The Routes Displaying A View Building Layouts & Views Defining The Layout Defining The Child View Adding Tasks Validation Creating The Task Displaying Existing Tasks Deleting Tasks Adding The Delete Button Deleting The Task Introduction This quickstart guide provides a basic … Read more