Changes between Version 2 and Version 3 of Courses/BASH


Ignore:
Timestamp:
2015-02-04T10:16:07+01:00 (9 years ago)
Author:
Lennart Johansson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Courses/BASH

    v2 v3  
    11BASH is the default OS shell for Linux and Mac OS x. BASH can also be used on Windows if cygwin is installed.
    22
    3 Cygwin can be downloaded from: https://cygwin.com/install.html
     3Cygwin can be downloaded from: [https://cygwin.com/install.html link]
    44
    55Students with a windows computer are requested to install cygwin. A minimal installation + nano should be enough for our purposes.
     
    77nano is a basic editor, without default syntax highlighting.
    88To install syntax highlighting create a file sh.nanorc in the folder /usr/share/nano
    9 Retreive the code from: https://code.google.com/p/nanosyntax/source/browse/trunk/syntax-nanorc/sh.nanorc and paste it into the sh.nanorc file
     9Retreive the code from: [https://code.google.com/p/nanosyntax/source/browse/trunk/syntax-nanorc/sh.nanorc link] and paste it into the sh.nanorc file
    1010
    1111Save the file and go to your home directory (cd ~)
    1212Create a file called .nanorc containing the text ''include /usr/share/nano/sh.nanorc''
    1313
    14 Practices can be found in the BASH Beginners guide by Machtelt Garrels: http://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf
     14Practices can be found in the BASH Beginners guide by Machtelt Garrels: [http://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf link]