Desenvolvendo scripts em KSH Flashcards

1
Q

cut

A

Corta partes de uma string.

cut -d(delimitador) -f(coluna)

  • d define qual é o delimitador de uma coluna
  • f é um valor numerico que define qual a coluna que deve ser selecionada
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Return

A

Flag pra saida de um script no comando.

exit 0 significa que saiu com sucesso

exit n (n sendo um numero) retorna algum erro

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

if

A

an if loop on korn shell must have the below syntax:

if something
then
something else
fi

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

if -f

A

if something exists

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

if argument 1 || argument 2

A

argument 1 or argument 2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

sort

A

Ordena saidas.

  • f faz com que tudo vire maiusculo
  • k define uma coluna a ser alterada
  • u remove duplicados
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Read

A

Assigna cada variavel para uma coluna

How well did you know this?
1
Not at all
2
3
4
5
Perfectly