What is the Position_args in man page The Next CEO of Stack Overflowhead command options and reading man filesAdd sid field to ps -f outputHow and what style should I use when writing man pages?How can 'man' render double quotes not as doubled backtick and prime characters?Install the latest POSIX man pages?Access ImageMagick's man pageHow to access man pages as structured contentUsing the 'a' and 'c' options with the 'dash' command in UnixHow to search a pattern containing hyphens inside man pages?How to automatically scroll to requested command when the “General Commands Manual” is shown?

In the "Harry Potter and the Order of the Phoenix" video game, what potion is used to sabotage Umbridge's speakers?

Scary film where a woman has vaginal teeth

Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?

Can Sneak Attack be used when hitting with an improvised weapon?

Purpose of level-shifter with same in and out voltages

My ex-girlfriend uses my Apple ID to login to her iPad, do I have to give her my Apple ID password to reset it?

Can I board the first leg of the flight without having final country's visa?

How do I fit a non linear curve?

Is it convenient to ask the journal's editor for two additional days to complete a review?

From jafe to El-Guest

Do I need to write [sic] when including a quotation with a number less than 10 that isn't written out?

"Eavesdropping" vs "Listen in on"

Inexact numbers as keys in Association?

Easy to read palindrome checker

Why am I getting "Static method cannot be referenced from a non static context: String String.valueOf(Object)"?

It is correct to match light sources with the same color temperature?

Redefining symbol midway through a document

Graph of the history of databases

What is the difference between "hamstring tendon" and "common hamstring tendon"?

Is it professional to write unrelated content in an almost-empty email?

Are the names of these months realistic?

Why is information "lost" when it got into a black hole?

Is there such a thing as a proper verb, like a proper noun?

Spaces in which all closed sets are regular closed



What is the Position_args in man page



The Next CEO of Stack Overflowhead command options and reading man filesAdd sid field to ps -f outputHow and what style should I use when writing man pages?How can 'man' render double quotes not as doubled backtick and prime characters?Install the latest POSIX man pages?Access ImageMagick's man pageHow to access man pages as structured contentUsing the 'a' and 'c' options with the 'dash' command in UnixHow to search a pattern containing hyphens inside man pages?How to automatically scroll to requested command when the “General Commands Manual” is shown?










2















I just Joined Linux
and I trying to explore commands with the available resources (mainly man pages)



It's easy to understand what are the option args(content in usage and options) in a command manpage, but I've trouble understanding what are the position_args.



take as example vgcreate



How could I know what is the position args, by reading man page?










share|improve this question









New contributor




Nelssen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    2















    I just Joined Linux
    and I trying to explore commands with the available resources (mainly man pages)



    It's easy to understand what are the option args(content in usage and options) in a command manpage, but I've trouble understanding what are the position_args.



    take as example vgcreate



    How could I know what is the position args, by reading man page?










    share|improve this question









    New contributor




    Nelssen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      2












      2








      2








      I just Joined Linux
      and I trying to explore commands with the available resources (mainly man pages)



      It's easy to understand what are the option args(content in usage and options) in a command manpage, but I've trouble understanding what are the position_args.



      take as example vgcreate



      How could I know what is the position args, by reading man page?










      share|improve this question









      New contributor




      Nelssen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I just Joined Linux
      and I trying to explore commands with the available resources (mainly man pages)



      It's easy to understand what are the option args(content in usage and options) in a command manpage, but I've trouble understanding what are the position_args.



      take as example vgcreate



      How could I know what is the position args, by reading man page?







      linux man arguments






      share|improve this question









      New contributor




      Nelssen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      Nelssen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited 2 days ago









      Jeff Schaller

      44.4k1162143




      44.4k1162143






      New contributor




      Nelssen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 2 days ago









      NelssenNelssen

      1234




      1234




      New contributor




      Nelssen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Nelssen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Nelssen is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          2 Answers
          2






          active

          oldest

          votes


















          4














          Positions args are required to be given in a specific order on the command line.



          for your specific example:
          vgcreate VG_new PV



          VG_new must come first, followed by PV. Most the time positional args come at the end of a command.



          Most other args, that are mostly (if not always) prefixed by a - or -- can come in any order



          vgcreate --clustered y --maxlogicalvolumes 2 newvol /dev/sda1


          is the same as



          vgcreate --maxlogicalvolumes 2 --clustered y newvol /dev/sda1


          while this would at best would result in and error, or could possibly have some undefined or undesirable outcomes:



          vgcreate --clustered y --maxlogicalvolumes 2 /dev/sda1 newvol





          share|improve this answer























          • In general, the order of command line options is not always arbitrary. Quite often, a later option may override an earlier option. For example, rm -f -i file will behave differently from rm -i -f file. Filename operands on the command line can very seldom occur in any order, especially if the command specific source and target operands.

            – Kusalananda
            yesterday



















          4














          Unfortunately, you cannot. The LVM2 doco fails to explain these.



          To know what it is, you, an end user of the tools, have instead to go digging around in the program source. A person by the name of David Teigland introduced a new system for the LVM2 toolset in August 2016, which makes all of its manual pages now look like this. The synopsis section is as you saw, and the real synopsis is actually in a "USAGE" section further down.



          Commentary in the source code, not exposed to end users as doco, explains that the command line for all of the tools is considered to comprise option arguments (the ones beginning with minuses) and positional arguments (whose meaning is according to their position in the argument vector when all of the option arguments have been removed), and that these are both further subdivided into required and optional.



          LVM2 manual pages are not the best. Additionally symptomatic of this is that the official WWW site hyperlinks to nonexistent WWW pages for the manual.






          share|improve this answer























          • Hi @JdeBP, I upvoted your answer but accepted Fitz as he expends more time explaining the Position args, and consequently left me no doubts about what it is. However, your contribution was also important to me better understand man pages

            – Nelssen
            yesterday











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );






          Nelssen is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f509542%2fwhat-is-the-position-args-in-man-page%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          4














          Positions args are required to be given in a specific order on the command line.



          for your specific example:
          vgcreate VG_new PV



          VG_new must come first, followed by PV. Most the time positional args come at the end of a command.



          Most other args, that are mostly (if not always) prefixed by a - or -- can come in any order



          vgcreate --clustered y --maxlogicalvolumes 2 newvol /dev/sda1


          is the same as



          vgcreate --maxlogicalvolumes 2 --clustered y newvol /dev/sda1


          while this would at best would result in and error, or could possibly have some undefined or undesirable outcomes:



          vgcreate --clustered y --maxlogicalvolumes 2 /dev/sda1 newvol





          share|improve this answer























          • In general, the order of command line options is not always arbitrary. Quite often, a later option may override an earlier option. For example, rm -f -i file will behave differently from rm -i -f file. Filename operands on the command line can very seldom occur in any order, especially if the command specific source and target operands.

            – Kusalananda
            yesterday
















          4














          Positions args are required to be given in a specific order on the command line.



          for your specific example:
          vgcreate VG_new PV



          VG_new must come first, followed by PV. Most the time positional args come at the end of a command.



          Most other args, that are mostly (if not always) prefixed by a - or -- can come in any order



          vgcreate --clustered y --maxlogicalvolumes 2 newvol /dev/sda1


          is the same as



          vgcreate --maxlogicalvolumes 2 --clustered y newvol /dev/sda1


          while this would at best would result in and error, or could possibly have some undefined or undesirable outcomes:



          vgcreate --clustered y --maxlogicalvolumes 2 /dev/sda1 newvol





          share|improve this answer























          • In general, the order of command line options is not always arbitrary. Quite often, a later option may override an earlier option. For example, rm -f -i file will behave differently from rm -i -f file. Filename operands on the command line can very seldom occur in any order, especially if the command specific source and target operands.

            – Kusalananda
            yesterday














          4












          4








          4







          Positions args are required to be given in a specific order on the command line.



          for your specific example:
          vgcreate VG_new PV



          VG_new must come first, followed by PV. Most the time positional args come at the end of a command.



          Most other args, that are mostly (if not always) prefixed by a - or -- can come in any order



          vgcreate --clustered y --maxlogicalvolumes 2 newvol /dev/sda1


          is the same as



          vgcreate --maxlogicalvolumes 2 --clustered y newvol /dev/sda1


          while this would at best would result in and error, or could possibly have some undefined or undesirable outcomes:



          vgcreate --clustered y --maxlogicalvolumes 2 /dev/sda1 newvol





          share|improve this answer













          Positions args are required to be given in a specific order on the command line.



          for your specific example:
          vgcreate VG_new PV



          VG_new must come first, followed by PV. Most the time positional args come at the end of a command.



          Most other args, that are mostly (if not always) prefixed by a - or -- can come in any order



          vgcreate --clustered y --maxlogicalvolumes 2 newvol /dev/sda1


          is the same as



          vgcreate --maxlogicalvolumes 2 --clustered y newvol /dev/sda1


          while this would at best would result in and error, or could possibly have some undefined or undesirable outcomes:



          vgcreate --clustered y --maxlogicalvolumes 2 /dev/sda1 newvol






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered yesterday









          FitzFitz

          1852




          1852












          • In general, the order of command line options is not always arbitrary. Quite often, a later option may override an earlier option. For example, rm -f -i file will behave differently from rm -i -f file. Filename operands on the command line can very seldom occur in any order, especially if the command specific source and target operands.

            – Kusalananda
            yesterday


















          • In general, the order of command line options is not always arbitrary. Quite often, a later option may override an earlier option. For example, rm -f -i file will behave differently from rm -i -f file. Filename operands on the command line can very seldom occur in any order, especially if the command specific source and target operands.

            – Kusalananda
            yesterday

















          In general, the order of command line options is not always arbitrary. Quite often, a later option may override an earlier option. For example, rm -f -i file will behave differently from rm -i -f file. Filename operands on the command line can very seldom occur in any order, especially if the command specific source and target operands.

          – Kusalananda
          yesterday






          In general, the order of command line options is not always arbitrary. Quite often, a later option may override an earlier option. For example, rm -f -i file will behave differently from rm -i -f file. Filename operands on the command line can very seldom occur in any order, especially if the command specific source and target operands.

          – Kusalananda
          yesterday














          4














          Unfortunately, you cannot. The LVM2 doco fails to explain these.



          To know what it is, you, an end user of the tools, have instead to go digging around in the program source. A person by the name of David Teigland introduced a new system for the LVM2 toolset in August 2016, which makes all of its manual pages now look like this. The synopsis section is as you saw, and the real synopsis is actually in a "USAGE" section further down.



          Commentary in the source code, not exposed to end users as doco, explains that the command line for all of the tools is considered to comprise option arguments (the ones beginning with minuses) and positional arguments (whose meaning is according to their position in the argument vector when all of the option arguments have been removed), and that these are both further subdivided into required and optional.



          LVM2 manual pages are not the best. Additionally symptomatic of this is that the official WWW site hyperlinks to nonexistent WWW pages for the manual.






          share|improve this answer























          • Hi @JdeBP, I upvoted your answer but accepted Fitz as he expends more time explaining the Position args, and consequently left me no doubts about what it is. However, your contribution was also important to me better understand man pages

            – Nelssen
            yesterday















          4














          Unfortunately, you cannot. The LVM2 doco fails to explain these.



          To know what it is, you, an end user of the tools, have instead to go digging around in the program source. A person by the name of David Teigland introduced a new system for the LVM2 toolset in August 2016, which makes all of its manual pages now look like this. The synopsis section is as you saw, and the real synopsis is actually in a "USAGE" section further down.



          Commentary in the source code, not exposed to end users as doco, explains that the command line for all of the tools is considered to comprise option arguments (the ones beginning with minuses) and positional arguments (whose meaning is according to their position in the argument vector when all of the option arguments have been removed), and that these are both further subdivided into required and optional.



          LVM2 manual pages are not the best. Additionally symptomatic of this is that the official WWW site hyperlinks to nonexistent WWW pages for the manual.






          share|improve this answer























          • Hi @JdeBP, I upvoted your answer but accepted Fitz as he expends more time explaining the Position args, and consequently left me no doubts about what it is. However, your contribution was also important to me better understand man pages

            – Nelssen
            yesterday













          4












          4








          4







          Unfortunately, you cannot. The LVM2 doco fails to explain these.



          To know what it is, you, an end user of the tools, have instead to go digging around in the program source. A person by the name of David Teigland introduced a new system for the LVM2 toolset in August 2016, which makes all of its manual pages now look like this. The synopsis section is as you saw, and the real synopsis is actually in a "USAGE" section further down.



          Commentary in the source code, not exposed to end users as doco, explains that the command line for all of the tools is considered to comprise option arguments (the ones beginning with minuses) and positional arguments (whose meaning is according to their position in the argument vector when all of the option arguments have been removed), and that these are both further subdivided into required and optional.



          LVM2 manual pages are not the best. Additionally symptomatic of this is that the official WWW site hyperlinks to nonexistent WWW pages for the manual.






          share|improve this answer













          Unfortunately, you cannot. The LVM2 doco fails to explain these.



          To know what it is, you, an end user of the tools, have instead to go digging around in the program source. A person by the name of David Teigland introduced a new system for the LVM2 toolset in August 2016, which makes all of its manual pages now look like this. The synopsis section is as you saw, and the real synopsis is actually in a "USAGE" section further down.



          Commentary in the source code, not exposed to end users as doco, explains that the command line for all of the tools is considered to comprise option arguments (the ones beginning with minuses) and positional arguments (whose meaning is according to their position in the argument vector when all of the option arguments have been removed), and that these are both further subdivided into required and optional.



          LVM2 manual pages are not the best. Additionally symptomatic of this is that the official WWW site hyperlinks to nonexistent WWW pages for the manual.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered yesterday









          JdeBPJdeBP

          37.6k478182




          37.6k478182












          • Hi @JdeBP, I upvoted your answer but accepted Fitz as he expends more time explaining the Position args, and consequently left me no doubts about what it is. However, your contribution was also important to me better understand man pages

            – Nelssen
            yesterday

















          • Hi @JdeBP, I upvoted your answer but accepted Fitz as he expends more time explaining the Position args, and consequently left me no doubts about what it is. However, your contribution was also important to me better understand man pages

            – Nelssen
            yesterday
















          Hi @JdeBP, I upvoted your answer but accepted Fitz as he expends more time explaining the Position args, and consequently left me no doubts about what it is. However, your contribution was also important to me better understand man pages

          – Nelssen
          yesterday





          Hi @JdeBP, I upvoted your answer but accepted Fitz as he expends more time explaining the Position args, and consequently left me no doubts about what it is. However, your contribution was also important to me better understand man pages

          – Nelssen
          yesterday










          Nelssen is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          Nelssen is a new contributor. Be nice, and check out our Code of Conduct.












          Nelssen is a new contributor. Be nice, and check out our Code of Conduct.











          Nelssen is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f509542%2fwhat-is-the-position-args-in-man-page%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

          Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

          Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020