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 * Syntax highlighting styles
*/ */
.highlight, pre, main code { .highlight, pre, main pre code {
background: #bdbdbd; background: #bdbdbd;
color: #212121; color: #212121;
border-radius: 2px; border-radius: 2px;

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands category-title: Advanced commands
tags: calculator sum add substract divide calculate compute tags: calculator sum add substract divide calculate compute
title: bc 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 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 category-title: Advanced commands
tags: remove column tags: remove column
title: colrm 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> 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 category-title: Advanced commands
tags: compare sorted files tags: compare sorted files
title: comm 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 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> 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 category-title: Advanced commands
tags: difference lines diff file separating tags: difference lines diff file separating
title: diff 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. 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 category-title: Advanced commands
tags: echo print text tags: echo print text
title: echo 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 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 category-title: Advanced commands
tags: advanced text editor tags: advanced text editor
title: emacs 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 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 is also available for graphical window managers, however we will only cover the
"text based" version here. "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> <h3>Open a file, or create it like this:</h3>
<pre> <pre>

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands category-title: Advanced commands
tags: search for occurencies tags: search for occurencies
title: grep 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 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. 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 category-title: Advanced commands
tags: head tail text file tags: head tail text file
title: head and tail 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 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 category-title: Advanced commands
tags: number lines count tags: number lines count
title: nl 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. 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> 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 category-title: Advanced commands
tags: filie coluns analize tags: filie coluns analize
title: paste 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 The <code>paste</code> command is used to join files horizontally

View File

@ -5,6 +5,8 @@ category-page: advanced
category-title: Advanced commands category-title: Advanced commands
tags: pipes redirect output input tags: pipes redirect output input
title: Pipes 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 | , 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 category-title: Advanced commands
tags: translate tags: translate
title: tr 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 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 category-title: Advanced commands
tags: advanced text editor hell quit help escape sos tags: advanced text editor hell quit help escape sos
title: vi 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 The default editor that comes with the UNIX operating system is called
<code>vi</code> (visual editor).<br> <code>vi</code> (visual editor).<br>

View File

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

View File

@ -5,7 +5,7 @@ category-title: Basic commands
tags: Open the Shell tags: Open the Shell
author: Gianmarco De Vita author: Gianmarco De Vita
title: Open the Shell 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. 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 category-title: Basic commands
author: Marzio Lunghi author: Marzio Lunghi
title: MacOS terminal toolbar title: MacOS terminal toolbar
previous-page: pages/cmd/basic/openshell.html previous-page: pages/cmd/basic/0-openshell.html
next-page: pages/cmd/basic/closeshell.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 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 tags: manual
author: Gianmarco De Vita author: Gianmarco De Vita
title: info title: info
previous-page: pages/cmd/basic/whatis.html previous-page: pages/cmd/basic/9-whatis.html
next-page: pages/cmd/basic/chown.html next-page: pages/cmd/basic/11-chown.html
--- ---
An <i>.info</i> file is an information document created by Texinfo.<br> An <i>.info</i> file is an information document created by Texinfo.<br>
It stores documentation in a book format with chapters, sections, It stores documentation in a book format with chapters, sections,

View File

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

View File

@ -5,7 +5,7 @@ category-title: Basic commands
author: Joy Albertini author: Joy Albertini
tags: directory path mv file tags: directory path mv file
title: mv 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: <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 tags: Close shell
author: Marzio Lunghi author: Marzio Lunghi
title: Closing the shell title: Closing the shell
previous-page: pages/cmd/basic/terminal-toolbar.html previous-page: pages/cmd/basic/1-terminal-toolbar.html
next-page: pages/cmd/basic/ls.html next-page: pages/cmd/basic/3-ls.html
--- ---
If you want to close the shell session, there are several ways to do so: 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 tags: directory list
author: Alessandro Marinelli author: Alessandro Marinelli
title: ls title: ls
previous-page: pages/cmd/basic/closeshell.html previous-page: pages/cmd/basic/2-closeshell.html
next-page: pages/cmd/basic/man.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 <code>ls</code> command is used to list a directory content or a file.<br>
The name stands for <i>LiSt</i>. The name stands for <i>LiSt</i>.

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: manual tags: manual
author: Gianmarco De Vita author: Gianmarco De Vita
title: man title: man
previous-page: pages/cmd/basic/ls.html previous-page: pages/cmd/basic/3-ls.html
next-page: pages/cmd/basic/open.html next-page: pages/cmd/basic/5-open.html
--- ---
The <code>man</code> tool allows you to explore the various utilities 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> 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 tags: open
author: Gianmarco De Vita author: Gianmarco De Vita
title: open title: open
previous-page: pages/cmd/basic/man.html previous-page: pages/cmd/basic/4-man.html
next-page: pages/cmd/basic/more-less.html next-page: pages/cmd/basic/6-more-less.html
--- ---
You can open files and folder as new windows through the terminal. 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 category-title: Basic commands
tags: More and less tags: More and less
author: Marzio Lunghi author: Marzio Lunghi
title: more and Less title: more and less
previous-page: pages/cmd/basic/open.html previous-page: pages/cmd/basic/5-open.html
next-page: pages/cmd/basic/clear.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 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 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 tags: Clear shell
author: Marzio Lunghi author: Marzio Lunghi
title: clear title: clear
previous-page: pages/cmd/basic/more-less.html previous-page: pages/cmd/basic/6-more-less.html
next-page: pages/cmd/basic/say.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 If you want to clear the shell screen up to the start you have to digit
the <code>clear</code> command: the <code>clear</code> command:

View File

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

View File

@ -5,8 +5,8 @@ category-title: Basic commands
tags: Whatis tags: Whatis
author: Marzio Lunghi author: Marzio Lunghi
title: whatis title: whatis
previous-page: pages/cmd/basic/say.html previous-page: pages/cmd/basic/8-say.html
next-page: pages/cmd/basic/info.html next-page: pages/cmd/basic/10-info.html
--- ---
The <code>whatis</code> command gives you a brief description of a command. 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 tags: compress archive extract
author: Andrea Brites Marto author: Andrea Brites Marto
title: 7z title: 7z
next-page: pages/cmd/interm/apropos.html
--- ---
<p> <p>
A .7z. file is an archive format that stands for 7-zip. By default, Mac OS X does not 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 author: Joy Albertini
tags: search tag apropos keyword tags: search tag apropos keyword
title: apropos 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, 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 tags: base64 representation
author: Gianmarco De Vita author: Gianmarco De Vita
title: base64 title: base64
previous-page: previous-page: pages/cmd/interm/apropos.html
next-page: next-page: pages/cmd/interm/basename.html
--- ---
<i>Base64</i> is an encoding system that allows the translation of binary <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 tags: basename suffix prefix name
author: Fabiano Fenini author: Fabiano Fenini
title: basename 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 The <code>basename</code> command deletes any prefix ending with the last slash "/" character
present in string and also a suffix. present in string and also a suffix.

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: bash shell terminal tags: bash shell terminal
author: Marco Farace author: Marco Farace
title: bash 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 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 tags: cat content file show concatenate
author: Fabiano Fenini author: Fabiano Fenini
title: cat 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 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 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 tags: change root
author: Gianmarco De Vita author: Gianmarco De Vita
title: chroot title: chroot
previous-page: pages/cmd/interm/ previous-page: pages/cmd/interm/cat.html
next-page: pages/cmd/interm/ next-page: pages/cmd/interm/curl.html
--- ---
The <code>chroot</code> utility allows you to change its root directory to 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> 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 tags: curl download http client crawler request online
author: Claudio Maggioni author: Claudio Maggioni
title: curl 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 The <code>curl</code> command is a fast and versatile shell program that can
request online content using various protocols, including <i>HTTP</i>, 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 tags: stopped job fg foreground
author: Fabiano Fenini author: Fabiano Fenini
title: fg 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 The <code>fg</code> command allows us to continue a stopped operation by running it
in foreground.<br> in foreground.<br>

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: versioning commit merge software source code tags: versioning commit merge software source code
author: Andrea Brites Marto author: Andrea Brites Marto
title: git 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> 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> 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 tags: command ifconfig
author: Matteo Omenetti author: Matteo Omenetti
title: ifconfig 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 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 category-title: Intermediate commands
author: Marco Farace author: Marco Farace
title: install 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 The file(s) are copied to the target file or directory. If the destination

View File

@ -2,9 +2,11 @@
layout: page layout: page
category-page: intermediate category-page: intermediate
category-title: Intermediate commands category-title: Intermediate commands
tags: terminate tags: terminate
author: Announ Marwan author: Announ Marwan
title: kill 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 The <code>kill</code> command is used for terminating the
running processes on your system.<br> running processes on your system.<br>
@ -30,7 +32,7 @@ killall -9 [process name]
<h3>kill</h3> <h3>kill</h3>
Will terminate only one program. 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. or service to shut itself down.
<pre> <pre>

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: integrity checksum tags: integrity checksum
author: Joey Bevilacqua author: Joey Bevilacqua
title: md5 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 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 tags: mount drive umount storage device
author: Marco Farace author: Marco Farace
title: mount 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 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 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 tags: neofetch fetch neo
author: Marco Farace author: Marco Farace
title: neofetch 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 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 tags: password dashlane keypass manager gpg encrypt sync
author: Claudio Maggioni author: Claudio Maggioni
title: pass 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 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 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 tags: password change pwd user
author: Fabiano Fenini author: Fabiano Fenini
title: passwd 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 The <code>passwd</code> command allows us to change or to assign a password of authentication
of an user currently in the system.<br> of an user currently in the system.<br>

View File

@ -3,8 +3,10 @@ layout: page
category-page: intermediate category-page: intermediate
category-title: Intermediate commands category-title: Intermediate commands
author: Joy Albertini author: Joy Albertini
tags: server ping latency UNIX tags: server ping latency
title: ping 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> 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 tags: process status
author: Andrea Brites Marto author: Andrea Brites Marto
title: ps title: ps
previous-page: pages/cmd/interm/ping.html
next-page: pages/cmd/interm/scp.html
--- ---
<p> <p>

View File

@ -5,6 +5,8 @@ category-title: Intermediate commands
tags: ssh copy file secure tags: ssh copy file secure
author: Announ Marwan author: Announ Marwan
title: scp 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> 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 tags: sha sums check
author: Gianmarco De Vita author: Gianmarco De Vita
title: shasum title: shasum
previous-page: pages/cmd/interm/ previous-page: pages/cmd/interm/scp.html
next-page: pages/cmd/interm/ next-page: pages/cmd/interm/ssh.html
--- ---
With <code>shasum</code> command you can work with SHA Checksums. 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 tags: remote connection host server file
author: Announ Marwan author: Announ Marwan
title: ssh 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 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 tags: strings read binaries file
author: Marco Farace author: Marco Farace
title: strings 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) 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 tags: sync disk write completion
author: Gianmarco De Vita author: Gianmarco De Vita
title: sync title: sync
previous-page: pages/cmd/interm/ previous-page: pages/cmd/interm/strings.html
next-page: pages/cmd/interm/ next-page: pages/cmd/interm/tar.html
--- ---
The <code>sync</code> utility force the completion of pending disk writes.</p> 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 tags: tar shell command compress archive
author: Nicola Brunner author: Nicola Brunner
title: tar 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 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 tags: tee output save
author: Nicola Brunner author: Nicola Brunner
title: tee 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 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 tags: watch repeat track analyse seconds
author: Claudio Maggioni author: Claudio Maggioni
title: watch 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 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 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 category-title: Intermediate commands
author: Marco Farace author: Marco Farace
title: who title: who
previous-page: pages/cmd/interm/watch.html
--- ---
The <code>who</code> command displays a list of all logged in users/display info The <code>who</code> command displays a list of all logged in users/display info
about current user about current user

View File

@ -5,6 +5,7 @@ category-title: FileSystem
tags: absolute relative path tags: absolute relative path
author: Announ Marwan author: Announ Marwan
title: Absolute paths 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, 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 tags: change directory
author: Alessandro Marinelli author: Alessandro Marinelli
title: cd title: cd
previous-page: pages/fs/absolute.html
next-page: pages/fs/du.html
--- ---
<!-- Co-authored with Mirko Ponzio --> <!-- Co-authored with Mirko Ponzio -->

View File

@ -5,6 +5,8 @@ category-title: FileSystem
tags: disk usage file size tags: disk usage file size
author: Joey Bevilacqua author: Joey Bevilacqua
title: du 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> 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 tags: link symbolic hard file shortcut
author: Riccardo Antonio Vivanco author: Riccardo Antonio Vivanco
title: ln 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. 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 tags: list file
author: Mirko Ponzio author: Mirko Ponzio
title: ls title: ls
previous-page: pages/fs/ln.html
next-page: pages/fs/mkdir.html
--- ---
The command <code>ls</code> stands for "LiSt"<br> The command <code>ls</code> stands for "LiSt"<br>

View File

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

View File

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

View File

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

View File

@ -5,6 +5,8 @@ category-title: FileSystem
tags: absolute relative path tags: absolute relative path
author: Announ Marwan author: Announ Marwan
title: Relative paths 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> 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 tags: directory list remove delete erase
author: Mattia Hijman author: Mattia Hijman
title: rm title: rm
previous-page: pages/fs/relative.html
--- ---
The <code>rm</code> command is used to delete and unlink directories and files.<br> 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 tags: command base echo cat grep
author: Dario Rasic author: Dario Rasic
title: Script Base Commands title: Script Base Commands
next-page: pages/scripts/1-variables.html
--- ---
<!-- Echo command text --> <!-- Echo command text -->
<h3>Echo</h3> <h3>Echo</h3>

View File

@ -5,6 +5,8 @@ category-title: Scripting
tags: variables defining deleting naming tags: variables defining deleting naming
author: Dario Rasic author: Dario Rasic
title: Script Variables title: Script Variables
previous-page: pages/scripts/0-base-commands.html
next-page: pages/scripts/2-special-variables.html
--- ---
<!-- Intro --> <!-- Intro -->
A variable is simply a string to which we assign a certain type of data, 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 $ ! tags: variables special $ !
author: Dario Rasic author: Dario Rasic
title: Script Special Variables title: Script Special Variables
previous-page: pages/scripts/1-variables.html
next-page: pages/scripts/3-parameter_expansion.html
--- ---
<!-- Intro --> <!-- Intro -->
There are certain strings that we can not use in the variable-naming process.<br> 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 tags: parameter expansion brace variable check condition empty exists
author: Marco Tereh author: Marco Tereh
title: Parameter expansion title: Parameter expansion
previous-page: pages/scripts/special_variables.html previous-page: pages/scripts/2-special-variables.html
next-page: pages/scripts/arrays.html next-page: pages/scripts/4-arrays.html
--- ---
There are some special operations that can be performed on 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 tags: array variable many index selector
author: Marco Tereh author: Marco Tereh
title: Arrays title: Arrays
previous-page: pages/scripts/parameter-expansion.html previous-page: pages/scripts/3-parameter_expansion.html
next-page: while-loop.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> 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 tags: loop for done script scripting
author: Matteo Omenetti author: Matteo Omenetti
title: For Loop title: For Loop
previous-page: pages/scripts/4-arrays.html
next-page: pages/scripts/6-while-loop.html
--- ---
<!-- Introduction --> <!-- Introduction -->

View File

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

View File

@ -4,7 +4,9 @@ category-page: scripts
category-title: Scripting category-title: Scripting
tags: if else script scripting read tags: if else script scripting read
author: Matteo Omenetti 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 --> <!-- Introduction -->

View File

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