26 Mayıs 2019 Pazar

bash seçenekleri

-c seçeneği
Açıklaması şöyle
bash -c allows arguments to be passed to the script, and $0 to be set:
Şöyle yaparız. some command içinde $1'e abc değeri ve  $2'ye  def değeri atanır..
bash -c 'some command' sh abc def
Açıklaması şöyle
bash -c 'some command' retains access to the standard input of the caller, so read or commands reading from standard input will work normally.
Şöyle yaparız.
$ bash -c cat
abc
abc
^D
--debug seçeneği
Şöyle yaparız.
$ bash --debugger
$ declare -Ff quote
quote 143 /usr/share/bash-completion/bash_completion
-v seçeneği
Şöyle yaparız.
$ bash --version
GNU bash, version 4.2.46(2)-release (x86_64-redhat-linux-gnu)

Hiç yorum yok:

Yorum Gönder