Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Maroun Maroun
Maroun Maroun

Posted on

     

What Does "--" (Double-Dash) Mean?

Fromman bash:

-- A-- signals the end of options and disables further option processing. Any arguments after the-- are treated as
filenames and arguments. An argument of- is equivalent to--.

In other words,-- is used to signify theend of command options. After it, only positional parameters are accepted.

For example, we want to look for the "--color" string usinggrep:

$echo"hello --color" |grep--colorusage:grep[-abcDEFGHhIiJLlmnOoqRSsUVvwxZ][-A num][-B num][-C[num]][-e pattern][-f file][--binary-files=value][--color=when][--context[=num]][--directories=action][--label][--line-buffered][--null][pattern][file ...]

We got an error, since--color expect a value. We can fix by signaling the end of options to the grep command using--:

$echo"hello --color" |grep----colorhello--color

It's important to note that not all bash builtin commands accept the-- as an end-of-options marker.

Top comments(0)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

Nice to meet you 🍻 My name is Maroun. I'm a dad, musician, programmer, Stackoverflower and astronaut wannabe.
  • Location
    Haifa
  • Work
    Senior Software Engineer
  • Joined

More fromMaroun Maroun

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp