*.ipynb: Use absolute URLs to link to the glossary
[swc-modular-shell.git] / 05-script.md
index d72c063cba0fccb6a8f336ad7a89854e3678ae01..c9e44aaa68fc75438023e687cae4e0beb1795384 100644 (file)
@@ -12,7 +12,7 @@ We are finally ready to see what makes the shell such a powerful programming env
 We are going to take the commands we repeat frequently and save them in files
 so that we can re-run all those operations again later by typing a single command.
 For historical reasons,
-a bunch of commands saved in a file is usually called a [shell script](../../gloss.html#shell-script),
+a bunch of commands saved in a file is usually called a [shell script](https://github.com/swcarpentry/bc/blob/master/gloss.md#shell-script),
 but make no mistake:
 these are actually small programs.
 
@@ -147,7 +147,7 @@ ATOM     18  C           1      -0.696  -2.628  -0.641
 
 This works,
 but it may take the next person who reads `middle.sh` a moment to figure out what it does.
-We can improve our script by adding some [comments](../../gloss.html#comment) at the top:
+We can improve our script by adding some [comments](https://github.com/swcarpentry/bc/blob/master/gloss.md#comment) at the top:
 
 <div class="in" markdown="1">
 ~~~