-
Notifications
You must be signed in to change notification settings - Fork 2
/
8) Functions.sh
66 lines (54 loc) · 1.43 KB
/
8) Functions.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#======================================================================
#Funções são fáceis e agilizam processos longos:
#!/bin/bash
a=1
increment(){
a=$((a+1))
echo $a
}
increment
#!/bin/bash
# Definindo a função
example_function() {
local my_variable=$1
echo "A função recebeu a variável: $my_variable"
}
# Definindo uma variável
my_variable_value="Hello World"
# Chamando a função e passando a variável como argumento
example_function "$my_variable_value"
#======================================================================
# Passing arguments before running
receber(){
echo "$0"
var1=$1
var2=$2
echo "Valores passados: $var1 e $var2"
}
receber $1 $2
#!/bin/bash
# -z checa para ver se tem variváveis nulas ou não inicializadas (iniciada mas sem valor). Retorna true
# -n checa se parametros foram passados. Retorna true
echo "One value"
read x
if [[ -z $x ]];
then
echo "No parameter passed."
else
echo "Parameter passed = $x"
echo "Parameter passed = $1"
fi
bash teste.sh 1
#======================================================================
Vários parametros passados
#!/bin/bash
if [[ $# -eq 0 ]]; then
echo "Não foram passados nenhum valor na execução do script para leitura"
exit
fi
for values in $@
do
echo "Valores passados na linha de comando: $values"
done
echo "Its over..?"
#https://www.geeksforgeeks.org/getopts-command-in-linux-with-examples/