From 01bce9d0b65f05fc9f67f05f4abde097ef23e1c1 Mon Sep 17 00:00:00 2001 From: Mike Fiedler Date: Sun, 27 Jul 2014 08:31:43 -0400 Subject: [PATCH] correct underline length post typo fix from 5079f94a482407a023a462322ad466426704cf64 --- programming_101.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programming_101.rst b/programming_101.rst index c773193..edd8638 100644 --- a/programming_101.rst +++ b/programming_101.rst @@ -5,7 +5,7 @@ Shell scripting basics ====================== Specifying the interpreter -------------------------- +-------------------------- Shell scripts will typically start with ``#!/bin/sh`` or ``#!/bin/bash``. This line, `affectionally known by various names including hashbang and shebang `_, is treated as a directive to run the rest of the script with the given interpreter. This directive, combined with setting the execute bit via ``chmod`` tells the system that the file is meant to be executed, rather than simply a file containing text.