Наши партнеры



Реклама
  • ИП Попов А.П.
  • ИНН: 602715631406
Этот танец невесты оставит вас без слов! Пересмотрела 10 раз!
Реклама
  • ИП Попов А.П.
  • ИНН: 602715631406
Диалог бабушки и внучки! Такое видео вызывает смех сквозь слезы…
Реклама
  • ИП Попов А.П.
  • ИНН: 602715631406
Женатым лучше не смотреть: танец роскошной Татьяны (видео)
Реклама
  • ИП Попов А.П.
  • ИНН: 602715631406
Галкин и Пугачева станцевали зажигательный танец на Кипре
Реклама
  • ИП Попов А.П.
  • ИНН: 602715631406
Танец на выпускном взорвал сеть: смотреть без детей



Книги по Linux (с отзывами читателей)

Библиотека сайта rus-linux.net

F.2. Bash Command-Line Options

Bash itself has a number of command-line options. Here are some of the more useful ones.

  • -c

    Read commands from the following string and assign any arguments to the positional parameters.

    bash$ bash -c 'set a b c d; IFS="+-;"; echo "$*"'
    a+b+c+d
    	      
  • -r

    --restricted

    Runs the shell, or a script, in restricted mode.

  • --posix

    Forces Bash to conform to POSIX mode.

  • --version

    Display Bash version information and exit.

  • --

    End of options. Anything further on the command line is an argument, not an option.