order pages for navigation

git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@254 a672b425-5310-4d7a-af5c-997e18724b81
This commit is contained in:
bevilj 2018-11-18 20:38:56 +00:00
parent 2deee47b34
commit a6515acdb9
76 changed files with 147 additions and 52 deletions

View File

@ -1,7 +1,7 @@
/*
* Syntax highlighting styles
*/
.highlight, pre, main code {
.highlight, pre, main pre code {
background: #bdbdbd;
color: #212121;
border-radius: 2px;

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: calculator sum add substract divide calculate compute
title: bc
previous-page: pages/cmd/advanced/bc.html
next-page: pages/cmd/advanced/colrm.html
---
In computing, <code>bc</code> is a command in Unix operating systems that can do easy

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: remove column
title: colrm
previous-page: pages/cmd/advanced/bc.html
next-page: pages/cmd/advanced/comm.html
---
The <code>colrm</code> is a command that removes the column that you indicate <br>

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: compare sorted files
title: comm
previous-page: pages/cmd/advanced/colrm.html
next-page: pages/cmd/advanced/diff.html
---
The <code>comm</code> is a command that compares two sorted files
line by line and writes the output: the lines that are in common and the lines that are unique.<br>

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: difference lines diff file separating
title: diff
previous-page: pages/cmd/advanced/comm.html
next-page: pages/cmd/advanced/echo.html
---
The command <code>diff</code> analyzes two files and prints the lines that are different.

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: echo print text
title: echo
previous-page: pages/cmd/advanced/diff.html
next-page: pages/cmd/advanced/emacs.html
---
In computing, <code>echo</code> is a command in Unix operating systems that outputs the

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: advanced text editor
title: emacs
previous-page: pages/cmd/advanced/echo.html
next-page: pages/cmd/advanced/grep.html
---
Emacs is one of the oldest and most versatile text editors available for
@ -25,13 +27,6 @@ in a Linux system and use it for basic text editing. Emacs
is also available for graphical window managers, however we will only cover the
"text based" version here.
<h3>How to install</h3>
Run the following command:
<pre>
install emacs
</pre>
<h3>Open a file, or create it like this:</h3>
<pre>

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: search for occurencies
title: grep
previous-page: pages/cmd/advanced/emacs.html
next-page: pages/cmd/advanced/head-tail.html
---
The <code>grep</code> is a command that permits to search occurences of a
keyword or more in a file or more. Through some flags you can decide the search criteria.

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: head tail text file
title: head and tail
previous-page: pages/cmd/advanced/grep.html
next-page: pages/cmd/advanced/nl.html
---
The <code>head</code> command reads the first few lines of any text given to it as an input

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: number lines count
title: nl
previous-page: pages/cmd/advanced/head-tail.html
next-page: pages/cmd/advanced/paste.html
---
The <code>nl</code> is a command that permits to number the lines.
Through some flags you can decide how to filter this command.<br>

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: filie coluns analize
title: paste
previous-page: pages/cmd/advanced/nl.html
next-page: pages/cmd/advanced/pipes.html
---
The <code>paste</code> command is used to join files horizontally

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: pipes redirect output input
title: Pipes
previous-page: pages/cmd/advanced/paste.html
next-page: pages/cmd/advanced/tr.html
---
The <code>pipes</code> that in the shell are representend with the symbol | ,

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: translate
title: tr
previous-page: pages/cmd/advanced/pipes.html
next-page: pages/cmd/advanced/vi.html
---
The <code>tr</code> command in Unix-like operating systems, which name stands for

View File

@ -5,7 +5,8 @@ category-page: advanced
category-title: Advanced commands
tags: advanced text editor hell quit help escape sos
title: vi
previous-page: pages/cmd/advanced/tr.html
next-page: pages/cmd/advanced/wc.html
---
The default editor that comes with the UNIX operating system is called
<code>vi</code> (visual editor).<br>

View File

@ -5,6 +5,7 @@ category-page: advanced
category-title: Advanced commands
tags: word count lines
title: wc
previous-page: pages/cmd/advanced/vi.html
---
The program reads either standard input or a list of files and
generates one or more of the following statistics: newline count,

View File

@ -5,7 +5,7 @@ category-title: Basic commands
tags: Open the Shell
author: Gianmarco De Vita
title: Open the Shell
next-page: pages/cmd/basic/terminal-toolbar.html
next-page: pages/cmd/basic/1-terminal-toolbar.html
---
The tool that allows us to interact with the system with the shell is the terminal.

View File

@ -5,8 +5,8 @@ category-page: basic
category-title: Basic commands
author: Marzio Lunghi
title: MacOS terminal toolbar
previous-page: pages/cmd/basic/openshell.html
next-page: pages/cmd/basic/closeshell.html
previous-page: pages/cmd/basic/0-openshell.html
next-page: pages/cmd/basic/2-closeshell.html
---
Once the MacOS Terminal app has been opened, a menu bar will appear exactly in the upper

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: manual
author: Gianmarco De Vita
title: info
previous-page: pages/cmd/basic/whatis.html
next-page: pages/cmd/basic/chown.html
previous-page: pages/cmd/basic/9-whatis.html
next-page: pages/cmd/basic/11-chown.html
---
An <i>.info</i> file is an information document created by Texinfo.<br>
It stores documentation in a book format with chapters, sections,

View File

@ -5,8 +5,8 @@ category-title: Basic commands
author: Joy Albertini
tags: directory file chown symbolic link
title: chown
previous-page: pages/cmd/basic/info.html
next-page: pages/cmd/basic/mv.html
previous-page: pages/cmd/basic/10-info.html
next-page: pages/cmd/basic/12-mv.html
---
<p>The <code>chown</code>

View File

@ -5,7 +5,7 @@ category-title: Basic commands
author: Joy Albertini
tags: directory path mv file
title: mv
previous-page: pages/cmd/basic/chown.html
previous-page: pages/cmd/basic/11-chown.html
---
<p>The <code>mv</code> move a file from a directory to another:

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: Close shell
author: Marzio Lunghi
title: Closing the shell
previous-page: pages/cmd/basic/terminal-toolbar.html
next-page: pages/cmd/basic/ls.html
previous-page: pages/cmd/basic/1-terminal-toolbar.html
next-page: pages/cmd/basic/3-ls.html
---
If you want to close the shell session, there are several ways to do so:

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: directory list
author: Alessandro Marinelli
title: ls
previous-page: pages/cmd/basic/closeshell.html
next-page: pages/cmd/basic/man.html
previous-page: pages/cmd/basic/2-closeshell.html
next-page: pages/cmd/basic/4-man.html
---
The <code>ls</code> command is used to list a directory content or a file.<br>
The name stands for <i>LiSt</i>.

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: manual
author: Gianmarco De Vita
title: man
previous-page: pages/cmd/basic/ls.html
next-page: pages/cmd/basic/open.html
previous-page: pages/cmd/basic/3-ls.html
next-page: pages/cmd/basic/5-open.html
---
The <code>man</code> tool allows you to explore the various utilities
of the Shell. To search for more information about a command, just write</p>

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: open
author: Gianmarco De Vita
title: open
previous-page: pages/cmd/basic/man.html
next-page: pages/cmd/basic/more-less.html
previous-page: pages/cmd/basic/4-man.html
next-page: pages/cmd/basic/6-more-less.html
---
You can open files and folder as new windows through the terminal.

View File

@ -4,9 +4,9 @@ category-page: basic
category-title: Basic commands
tags: More and less
author: Marzio Lunghi
title: more and Less
previous-page: pages/cmd/basic/open.html
next-page: pages/cmd/basic/clear.html
title: more and less
previous-page: pages/cmd/basic/5-open.html
next-page: pages/cmd/basic/7-clear.html
---
Both commands show the content of one or more files and its possible to do a research with
particular flags, but the “less” one allows us to go also backwards while reading the text

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: Clear shell
author: Marzio Lunghi
title: clear
previous-page: pages/cmd/basic/more-less.html
next-page: pages/cmd/basic/say.html
previous-page: pages/cmd/basic/6-more-less.html
next-page: pages/cmd/basic/8-say.html
---
If you want to clear the shell screen up to the start you have to digit
the <code>clear</code> command:

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: say
author: Gianmarco De Vita
title: say
previous-page: pages/cmd/basic/clear.html
next-page: pages/cmd/basic/whatis.html
previous-page: pages/cmd/basic/7-clear.html
next-page: pages/cmd/basic/9-whatis.html
---
You can convert text into audible speech just by writing the command

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: Whatis
author: Marzio Lunghi
title: whatis
previous-page: pages/cmd/basic/say.html
next-page: pages/cmd/basic/info.html
previous-page: pages/cmd/basic/8-say.html
next-page: pages/cmd/basic/10-info.html
---
The <code>whatis</code> command gives you a brief description of a command.

View File

@ -5,6 +5,7 @@ category-title: Intermediate commands
tags: compress archive extract
author: Andrea Brites Marto
title: 7z
next-page: pages/cmd/interm/apropos.html
---
<p>
A .7z. file is an archive format that stands for 7-zip. By default, Mac OS X does not

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
author: Joy Albertini
tags: search tag apropos keyword
title: apropos
previous-page: pages/cmd/interm/7z.html
next-page: pages/cmd/interm/base64.html
---
The <code>apropos</code> command is used to search command in the shell with a keyword,

View File

@ -5,8 +5,8 @@ category-title: Intermediate commands
tags: base64 representation
author: Gianmarco De Vita
title: base64
previous-page:
next-page:
previous-page: pages/cmd/interm/apropos.html
next-page: pages/cmd/interm/basename.html
---
<i>Base64</i> is an encoding system that allows the translation of binary

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: basename suffix prefix name
author: Fabiano Fenini
title: basename
previous-page: pages/cmd/interm/base64.html
next-page: pages/cmd/interm/bash.html
---
The <code>basename</code> command deletes any prefix ending with the last slash "/" character
present in string and also a suffix.

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: bash shell terminal
author: Marco Farace
title: bash
previous-page: pages/cmd/interm/basename.html
next-page: pages/cmd/interm/cat.html
---
Bash is an sh-compatible command language interpreter that executes commands

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: cat content file show concatenate
author: Fabiano Fenini
title: cat
previous-page: pages/cmd/interm/bash.html
next-page: pages/cmd/interm/chroot.html
---
The <code>cat</code> command can be easily associated to the word “concatenation” but
it doesnt have that only function: in fact, cat command gives us the possibility to create

View File

@ -5,8 +5,8 @@ category-title: Intermediate commands
tags: change root
author: Gianmarco De Vita
title: chroot
previous-page: pages/cmd/interm/
next-page: pages/cmd/interm/
previous-page: pages/cmd/interm/cat.html
next-page: pages/cmd/interm/curl.html
---
The <code>chroot</code> utility allows you to change its root directory to
the one indicated in newroot and, if given, executes the command.<br>

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: curl download http client crawler request online
author: Claudio Maggioni
title: curl
previous-page: pages/cmd/interm/chroot.html
next-page: pages/cmd/interm/fg.html
---
The <code>curl</code> command is a fast and versatile shell program that can
request online content using various protocols, including <i>HTTP</i>,

View File

@ -5,7 +5,8 @@ category-title: Intermediate commands
tags: stopped job fg foreground
author: Fabiano Fenini
title: fg
previous-page: ""
previous-page: pages/cmd/interm/curl.html
next-page: pages/cmd/interm/git.html
---
The <code>fg</code> command allows us to continue a stopped operation by running it
in foreground.<br>

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: versioning commit merge software source code
author: Andrea Brites Marto
title: git
previous-page: pages/cmd/interm/fg.html
next-page: pages/cmd/interm/ifconfig.html
---
If you want to use <i>Git</i> on the shell you need to know how this command works.<br>
The <i>git</i> command providesa set of high-level operations and full access to internals.<br>

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: command ifconfig
author: Matteo Omenetti
title: ifconfig
previous-page: pages/cmd/interm/git.html
next-page: pages/cmd/interm/install.html
---
The command <code>ifconfig</code> stands for <i>Interface CONFIGuration</i>. It is used

View File

@ -4,6 +4,8 @@ category-page: intermediate
category-title: Intermediate commands
author: Marco Farace
title: install
previous-page: pages/cmd/interm/ifconfig.html
next-page: pages/cmd/interm/kill.html
---
The file(s) are copied to the target file or directory. If the destination

View File

@ -2,9 +2,11 @@
layout: page
category-page: intermediate
category-title: Intermediate commands
tags: terminate
tags: terminate
author: Announ Marwan
title: kill
previous-page: pages/cmd/interm/install.html
next-page: pages/cmd/interm/md5.html
---
The <code>kill</code> command is used for terminating the
running processes on your system.<br>
@ -30,7 +32,7 @@ killall -9 [process name]
<h3>kill</h3>
Will terminate only one program.
Without Without options, kill sends SIGTERM to the PID specified and asks the application
Without options, kill sends SIGTERM to the PID specified and asks the application
or service to shut itself down.
<pre>

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: integrity checksum
author: Joey Bevilacqua
title: md5
previous-page: pages/cmd/interm/kill.html
next-page: pages/cmd/interm/mount.html
---
The command <code>md5</code> calculates an unique string for each input given as

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: mount drive umount storage device
author: Marco Farace
title: mount
previous-page: pages/cmd/interm/md5.html
next-page: pages/cmd/interm/neofetch.html
---
To access a file on a Unix-like machine, the file system that contains it
needs to be mounted with the <code>mount</code> command. Mount is frequently used for

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: neofetch fetch neo
author: Marco Farace
title: neofetch
previous-page: pages/cmd/interm/mount.html
next-page: pages/cmd/interm/pass.html
---
Neofetch is a fast, higly customizable system info script. a CLI system

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: password dashlane keypass manager gpg encrypt sync
author: Claudio Maggioni
title: pass
previous-page: pages/cmd/interm/neofetch.html
next-page: pages/cmd/interm/passwd.html
---
The <code>pass</code> command, also known as <i>Password Store</i>, is an
entirely offline password manager that uses <i>GPG</i> for encryption with

View File

@ -5,7 +5,8 @@ category-title: Intermediate commands
tags: password change pwd user
author: Fabiano Fenini
title: passwd
previous-page: ""
previous-page: pages/cmd/interm/pass.html
next-page: pages/cmd/interm/ping.html
---
The <code>passwd</code> command allows us to change or to assign a password of authentication
of an user currently in the system.<br>

View File

@ -3,8 +3,10 @@ layout: page
category-page: intermediate
category-title: Intermediate commands
author: Joy Albertini
tags: server ping latency UNIX
tags: server ping latency
title: ping
previous-page: pages/cmd/interm/passwd.html
next-page: pages/cmd/interm/ps.html
---
The <code>ping</code> command, is used to test connection between a <b>local server/computer</b>

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: process status
author: Andrea Brites Marto
title: ps
previous-page: pages/cmd/interm/ping.html
next-page: pages/cmd/interm/scp.html
---
<p>

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: ssh copy file secure
author: Announ Marwan
title: scp
previous-page: pages/cmd/interm/ps.html
next-page: pages/cmd/interm/shasum.html
---
The <code>scp</code> command name stands for <i>Secure CoPy</i>.<br>

View File

@ -5,8 +5,8 @@ category-title: Intermediate commands
tags: sha sums check
author: Gianmarco De Vita
title: shasum
previous-page: pages/cmd/interm/
next-page: pages/cmd/interm/
previous-page: pages/cmd/interm/scp.html
next-page: pages/cmd/interm/ssh.html
---
With <code>shasum</code> command you can work with SHA Checksums.

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: remote connection host server file
author: Announ Marwan
title: ssh
previous-page: pages/cmd/interm//shasum.html
next-page: pages/cmd/interm//strings.html
---
The <code>ssh</code> command is used to operate with a remote machine using

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: strings read binaries file
author: Marco Farace
title: strings
previous-page: pages/cmd/interm//ssh.html
next-page: pages/cmd/interm//sync.html
---
The strings command returns each string of printable characters (ASCII)

View File

@ -5,8 +5,8 @@ category-title: Intermediate commands
tags: sync disk write completion
author: Gianmarco De Vita
title: sync
previous-page: pages/cmd/interm/
next-page: pages/cmd/interm/
previous-page: pages/cmd/interm/strings.html
next-page: pages/cmd/interm/tar.html
---
The <code>sync</code> utility force the completion of pending disk writes.</p>

View File

@ -5,6 +5,8 @@ category-page: interm
tags: tar shell command compress archive
author: Nicola Brunner
title: tar
previous-page: pages/cmd/interm/sync.html
next-page: pages/cmd/interm/tee.html
---
The <code>tar</code> command is used to create and manipulate streaming archive files, in

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: tee output save
author: Nicola Brunner
title: tee
previous-page: pages/cmd/interm/tar.html
next-page: pages/cmd/interm/watch.html
---
The <code>tee</code> command is used to split the output of a program, doing

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: watch repeat track analyse seconds
author: Claudio Maggioni
title: watch
previous-page: pages/cmd/interm/tee.html
next-page: pages/cmd/interm/who.html
---
The <code>watch</code> command is a system utility able to execute a command
every <i>n</i> seconds by clearing the screen and displaying the

View File

@ -4,6 +4,7 @@ category-page: intermediate
category-title: Intermediate commands
author: Marco Farace
title: who
previous-page: pages/cmd/interm/watch.html
---
The <code>who</code> command displays a list of all logged in users/display info
about current user

View File

@ -5,6 +5,7 @@ category-title: FileSystem
tags: absolute relative path
author: Announ Marwan
title: Absolute paths
next-page: pages/fs/cd.html
---
A path is a location to a folder or file in a file system of a Operating System,

View File

@ -5,6 +5,8 @@ category-title: FileSystem
tags: change directory
author: Alessandro Marinelli
title: cd
previous-page: pages/fs/absolute.html
next-page: pages/fs/du.html
---
<!-- Co-authored with Mirko Ponzio -->

View File

@ -5,6 +5,8 @@ category-title: FileSystem
tags: disk usage file size
author: Joey Bevilacqua
title: du
previous-page: pages/fs/cd.html
next-page: pages/fs/ln.html
---
The <code>du</code> command is used to display files and directories sizes.<br>

View File

@ -5,6 +5,8 @@ category-title: FileSystem
tags: link symbolic hard file shortcut
author: Riccardo Antonio Vivanco
title: ln
previous-page: pages/fs/du.html
next-page: pages/fs/ls.html
---
The <code>ln</code> command is used to create a link of a file or directory.

View File

@ -5,6 +5,8 @@ category-title: FileSystem
tags: list file
author: Mirko Ponzio
title: ls
previous-page: pages/fs/ln.html
next-page: pages/fs/mkdir.html
---
The command <code>ls</code> stands for "LiSt"<br>

View File

@ -5,6 +5,8 @@ category-title: FileSystem
tags: working directory current position where
author: Mirko Ponzio
title: mkdir
previous-page: pages/fs/ls.html
next-page: pages/fs/mv.html
---
<!-- Co-authored with Alessandro Marinelli -->

View File

@ -5,6 +5,8 @@ category-title: FileSystem
tags: directory list move rename
author: Mattia Hijman
title: mv
previous-page: pages/fs/mkdir.html
next-page: pages/fs/pwd.html
---
<!-- Co-authored with Joy Albertini -->

View File

@ -5,6 +5,8 @@ category-title: FileSystem
tags: working directory current position where
author: Mirko Ponzio
title: pwd
previous-page: pages/fs/mv.html
next-page: pages/fs/relative.html
---
<!-- Co-authored with Joy Albertini -->

View File

@ -5,6 +5,8 @@ category-title: FileSystem
tags: absolute relative path
author: Announ Marwan
title: Relative paths
previous-page: pages/fs/pwd.html
next-page: pages/fs/rm.html
---
Relative path is defined as path related to the present working directory(pwd).<br>

View File

@ -5,6 +5,7 @@ category-title: FileSystem
tags: directory list remove delete erase
author: Mattia Hijman
title: rm
previous-page: pages/fs/relative.html
---
The <code>rm</code> command is used to delete and unlink directories and files.<br>

View File

@ -5,6 +5,7 @@ category-title: Scripting
tags: command base echo cat grep
author: Dario Rasic
title: Script Base Commands
next-page: pages/scripts/1-variables.html
---
<!-- Echo command text -->
<h3>Echo</h3>

View File

@ -5,6 +5,8 @@ category-title: Scripting
tags: variables defining deleting naming
author: Dario Rasic
title: Script Variables
previous-page: pages/scripts/0-base-commands.html
next-page: pages/scripts/2-special-variables.html
---
<!-- Intro -->
A variable is simply a string to which we assign a certain type of data,

View File

@ -5,6 +5,8 @@ category-title: Scripting
tags: variables special $ !
author: Dario Rasic
title: Script Special Variables
previous-page: pages/scripts/1-variables.html
next-page: pages/scripts/3-parameter_expansion.html
---
<!-- Intro -->
There are certain strings that we can not use in the variable-naming process.<br>

View File

@ -5,8 +5,8 @@ category-title: Scripting
tags: parameter expansion brace variable check condition empty exists
author: Marco Tereh
title: Parameter expansion
previous-page: pages/scripts/special_variables.html
next-page: pages/scripts/arrays.html
previous-page: pages/scripts/2-special-variables.html
next-page: pages/scripts/4-arrays.html
---
There are some special operations that can be performed on

View File

@ -5,8 +5,8 @@ category-title: Scripting
tags: array variable many index selector
author: Marco Tereh
title: Arrays
previous-page: pages/scripts/parameter-expansion.html
next-page: while-loop.html
previous-page: pages/scripts/3-parameter_expansion.html
next-page: pages/scripts/5-for-loop.html
---
There is a special kind of <a href="variables.html">variable</a>, called an array.<br>

View File

@ -5,6 +5,8 @@ category-title: Scripting
tags: loop for done script scripting
author: Matteo Omenetti
title: For Loop
previous-page: pages/scripts/4-arrays.html
next-page: pages/scripts/6-while-loop.html
---
<!-- Introduction -->

View File

@ -5,6 +5,8 @@ category-title: Scripting
tags: loop while do script scripting read
author: Matteo Omenetti
title: While Loop
previous-page: pages/scripts/5-for-loop.html
next-page: pages/scripts/7-if.html
---
<!-- Introduction -->

View File

@ -4,7 +4,9 @@ category-page: scripts
category-title: Scripting
tags: if else script scripting read
author: Matteo Omenetti
title: If Statement
title: If statement
previous-page: pages/scripts/6-while-loop.html
next-page: pages/scripts/8-redirection.html
---
<!-- Introduction -->

View File

@ -5,6 +5,7 @@ category-title: Scripting
tags: redirect output input
author: Dario Rasic
title: Redirection
previous-page: pages/scripts/7-if.html
---
<h3>output as input</h3>
<br>