Jelajahi Sumber

Test folder removed

DricomDragon 5 tahun lalu
induk
melakukan
c6ae7cd048
11 mengubah file dengan 0 tambahan dan 142 penghapusan
  1. 0 9
      Tests/check.sh
  2. 0 4
      Tests/env.sh
  3. 0 13
      Tests/essai.sh
  4. 0 59
      Tests/exist.sh
  5. 0 7
      Tests/locjvsync
  6. 0 1
      Tests/macdarkside
  7. 0 8
      Tests/params.sh
  8. 0 1
      Tests/permissionlink.txt
  9. 0 12
      Tests/read.sh
  10. 0 22
      Tests/test.sh
  11. 0 6
      Tests/testfish

+ 0 - 9
Tests/check.sh

@@ -1,9 +0,0 @@
-#!/bin/bash
-echo '[essai] Hello !'
-if [ -e $1 ]
-then
-	echo "Fichier !!!"
-else
-	echo "Pas fichier !"
-fi
-echo '[essai] End of script.'

+ 0 - 4
Tests/env.sh

@@ -1,4 +0,0 @@
-#!/bin/bash
-echo "[essai] Your name : $USER"
-echo "[essai] Your editor : $EDITOR"
-echo '[essai] End of script.'

+ 0 - 13
Tests/essai.sh

@@ -1,13 +0,0 @@
-#!/bin/bash
-echo "[essai] Current directory :"
-current=`pwd`
-echo "jovian@darkside:$current"
-echo "[essai] Variables : utilisation des guillemets"
-message="This is a variable content"
-echo 'Voici le message : $message'
-echo "Voici le message : $message"
-tableau=('valeur0' 'valeur1' 'valeur2')
-tableau[5]='valeur5'
-echo "Tableau : ${tableau[*]}"
-echo "Case : ${tableau[2]}"
-echo '[essai] End of script.'

+ 0 - 59
Tests/exist.sh

@@ -1,59 +0,0 @@
-#!/bin/bash
-# Existence of arg
-echo "[exist] Testing existence."
-if [ -n $1 ]
-then
-	echo 'Arg 1 exists'
-fi
-
-if [ -z $1 ]
-then
-	echo 'Arg 1 does not exist'
-fi
-
-# Existence of prompt
-read -p 'Type > ' var
-if [ -n $var ]
-then
-	echo 'Var exists'
-fi
-
-if [ -z $var ]
-then
-	echo 'Var does not exist'
-fi
-
-# Existance of nothing
-if [ -n $not_declared_variable ]
-then
-	echo 'not_declared_variable exists'
-fi
-
-if [ -z $not_declared_variable ]
-then
-	echo 'not_declared_variable does not exist'
-fi
-
-# Existance of quoted nothing
-if [ -n "$not_declared_quoted_variable" ]
-then
-	echo 'not_declared_quoted_variable exists'
-fi
-
-if [ -z "$not_declared_quoted_variable" ]
-then
-	echo 'not_declared_quoted_variable does not exist'
-fi
-
-# Existance of void
-if [ -n ]
-then
-	echo 'void exists'
-fi
-
-if [ -z ]
-then
-	echo 'void does not exist'
-fi
-
-echo '[exist] End of script.'

+ 0 - 7
Tests/locjvsync

@@ -1,7 +0,0 @@
-#!/bin/sh
-echo Trying locally pushing documents to Jupyter computer ...
-rsync -parvn /home/jovian/Documents/ 192.168.0.10:~/Documents/ -e "ssh -p 7025"
-echo Push terminated.
-echo Trying locally pulling documents from Jupyter computer ...
-rsync -parvn 192.168.0.10:~/Documents/ /home/jovian/Documents/ -e "ssh -p 7025"
-echo Pull terminated.

+ 0 - 1
Tests/macdarkside

@@ -1 +0,0 @@
-d8:cb:8a:38:11:c1

+ 0 - 8
Tests/params.sh

@@ -1,8 +0,0 @@
-#!/bin/bash
-echo "[essai] Number of params : $#"
-echo "[essai] Param 0, prog name : $0"
-echo "[essai] Param 1 : $1"
-echo "[essai] Param 2 : $2"
-shift
-echo "[essai] Also param 2 : $1"
-echo "[essai] End of script."

+ 0 - 1
Tests/permissionlink.txt

@@ -1 +0,0 @@
-https://www.vidarholen.net/contents/junk/ubuntu_permissions.html

+ 0 - 12
Tests/read.sh

@@ -1,12 +0,0 @@
-#!/bin/bash
-echo 'Start.'
-read -p 'Enter your name : ' name
-echo "Hello dear $name"
-read -p 'Enter your code : ' -t 2 code
-if [ -z $code ]
-then
-	echo 'Too late.'
-else
-	echo 'Fast ! Your entry :'
-	echo $code
-fi

+ 0 - 22
Tests/test.sh

@@ -1,22 +0,0 @@
-#!/bin/bash
-echo "[essai] Current directory :"
-if [ $# = 0 ]
-then
-	echo 'No argument !!!'
-elif [ $# = 1 ]
-then
-	echo "Good thing : $1"
-else
-	echo "Many things : $1, and $2"
-fi
-# Number process
-if [ $1 -lt 21 ]
-then
-	echo "Tiny number"
-elif [ $1 -eq 21 ]
-then
-	echo "Perfect !"
-else
-	echo "Pretty big."
-fi
-echo '[essai] End of script.'

+ 0 - 6
Tests/testfish

@@ -1,6 +0,0 @@
-#!/usr/bin/fish
-echo [1] Woa.
-ls
-echo [2] Woa !
-ll
-echo [3] Wend.