Using xargs with pdftk Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)xargs with multiple commandsflexible number of agruments with xargsExecuting lines of a file with xargs, using stdout redirectionxargs split incoming lineUsing xargs with mv and mkdir command in LinuxIssue using xargs in LinuxUsing Xargs with hocr2pdfUsing xargs with findxargs with shell function doesn't workUsing xargs with $() - operator precedence?

The following signatures were invalid: EXPKEYSIG 1397BC53640DB551

Do working physicists consider Newtonian mechanics to be "falsified"?

What LEGO pieces have "real-world" functionality?

How many spell slots should a Fighter 11/Ranger 9 have?

Passing functions in C++

Stars Make Stars

Active filter with series inductor and resistor - do these exist?

Losing the Initialization Vector in Cipher Block Chaining

What's the difference between (size_t)-1 and ~0?

Why is "Captain Marvel" translated as male in Portugal?

Can a zero nonce be safely used with AES-GCM if the key is random and never used again?

How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time

What would be Julian Assange's expected punishment, on the current English criminal law?

How should I respond to a player wanting to catch a sword between their hands?

If I can make up priors, why can't I make up posteriors?

How do I automatically answer y in bash script?

What items from the Roman-age tech-level could be used to deter all creatures from entering a small area?

How do you clear the ApexPages.getMessages() collection in a test?

Can't figure this one out.. What is the missing box?

Can I throw a sword that doesn't have the Thrown property at someone?

When communicating altitude with a '9' in it, should it be pronounced "nine hundred" or "niner hundred"?

Classification of bundles, Postnikov towers, obstruction theory, local coefficients

Why don't the Weasley twins use magic outside of school if the Trace can only find the location of spells cast?

Notation for two qubit composite product state



Using xargs with pdftk



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)xargs with multiple commandsflexible number of agruments with xargsExecuting lines of a file with xargs, using stdout redirectionxargs split incoming lineUsing xargs with mv and mkdir command in LinuxIssue using xargs in LinuxUsing Xargs with hocr2pdfUsing xargs with findxargs with shell function doesn't workUsing xargs with $() - operator precedence?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








5















I am using the following code to concatenate all the pdf files in the current directory:



find . -iname '*.pdf'|sort|xargs|xargs -I pdftk cat output union.pdf


The first invocation of xargs has the effect of converting the output of sort into a single line, with items separated by a space. But the result is this:



Error: Unable to find file.
Error: Failed to open PDF file:
./001.pdf ./002.pdf ./003.pdf ./004.pdf ./007.pdf ./010.pdf ./031.pdf ./057.pdf ./077.pdf ./103.pdf ./131.pdf ./155.pdf ./179.pdf ./205.pdf ./233.pdf ./261.pdf ./285.pdf ./313.pdf ./331.pdf ./357.pdf ./383.pdf ./411.pdf
Errors encountered. No output created.
Done. Input errors, so no output created.


Does xargs pass the argument to pdftk with surrounding quotes? How to prevent this? (Whitespaces, escaping and the way they interact with commands always drive me crazy...)










share|improve this question




























    5















    I am using the following code to concatenate all the pdf files in the current directory:



    find . -iname '*.pdf'|sort|xargs|xargs -I pdftk cat output union.pdf


    The first invocation of xargs has the effect of converting the output of sort into a single line, with items separated by a space. But the result is this:



    Error: Unable to find file.
    Error: Failed to open PDF file:
    ./001.pdf ./002.pdf ./003.pdf ./004.pdf ./007.pdf ./010.pdf ./031.pdf ./057.pdf ./077.pdf ./103.pdf ./131.pdf ./155.pdf ./179.pdf ./205.pdf ./233.pdf ./261.pdf ./285.pdf ./313.pdf ./331.pdf ./357.pdf ./383.pdf ./411.pdf
    Errors encountered. No output created.
    Done. Input errors, so no output created.


    Does xargs pass the argument to pdftk with surrounding quotes? How to prevent this? (Whitespaces, escaping and the way they interact with commands always drive me crazy...)










    share|improve this question
























      5












      5








      5


      1






      I am using the following code to concatenate all the pdf files in the current directory:



      find . -iname '*.pdf'|sort|xargs|xargs -I pdftk cat output union.pdf


      The first invocation of xargs has the effect of converting the output of sort into a single line, with items separated by a space. But the result is this:



      Error: Unable to find file.
      Error: Failed to open PDF file:
      ./001.pdf ./002.pdf ./003.pdf ./004.pdf ./007.pdf ./010.pdf ./031.pdf ./057.pdf ./077.pdf ./103.pdf ./131.pdf ./155.pdf ./179.pdf ./205.pdf ./233.pdf ./261.pdf ./285.pdf ./313.pdf ./331.pdf ./357.pdf ./383.pdf ./411.pdf
      Errors encountered. No output created.
      Done. Input errors, so no output created.


      Does xargs pass the argument to pdftk with surrounding quotes? How to prevent this? (Whitespaces, escaping and the way they interact with commands always drive me crazy...)










      share|improve this question














      I am using the following code to concatenate all the pdf files in the current directory:



      find . -iname '*.pdf'|sort|xargs|xargs -I pdftk cat output union.pdf


      The first invocation of xargs has the effect of converting the output of sort into a single line, with items separated by a space. But the result is this:



      Error: Unable to find file.
      Error: Failed to open PDF file:
      ./001.pdf ./002.pdf ./003.pdf ./004.pdf ./007.pdf ./010.pdf ./031.pdf ./057.pdf ./077.pdf ./103.pdf ./131.pdf ./155.pdf ./179.pdf ./205.pdf ./233.pdf ./261.pdf ./285.pdf ./313.pdf ./331.pdf ./357.pdf ./383.pdf ./411.pdf
      Errors encountered. No output created.
      Done. Input errors, so no output created.


      Does xargs pass the argument to pdftk with surrounding quotes? How to prevent this? (Whitespaces, escaping and the way they interact with commands always drive me crazy...)







      imagemagick xargs






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Apr 11 at 10:38









      MizarMizar

      907




      907




















          1 Answer
          1






          active

          oldest

          votes


















          8















          Does xargs pass the argument to pdftk with surrounding quotes?




          Yes and no, but technically no. xargs does no quoting, and pdftk does no unquoting either.



          The way programs receive command-line arguments in Linux/Unix isn't by using a single string that needs to be quoted and unquoted – that's just how the user-facing "command shell" language works, and quotes are interpreted by your shell, not by programs themselves. (This is the opposite of how Windows does it.)



          Internally programs are started using an array (/list/vector) of strings, which inherently preserves the exact text contents and separation of every element, so it doesn't really use quoting or escaping in the first place. (That is – unless you have to nest it, in which case it's back to string quoting and parsing, as you'll see below...)



          For example, your command line is parsed into this (using C-like array syntax for example, but the quotes aren't actually part of the strings):



          1. "find", ".", "-iname", "*.pdf", NULL
          2. "sort", NULL
          3. "xargs", NULL
          4. "xargs", "-I", "", "pdftk", "", "cat", "output", "union.pdf", NULL
          └─xargs uses these elements as the command─┘


          So when xargs reads a line of input (because -I sets it to line-by-line mode), it replaces the symbols in each individual element with the input line, without rearranging the elements in any way. Then it asks the OS to runs the result:



          "pdftk", "./001.pdf ./002.pdf ./003.pdf …", "cat", "output", "union.pdf", NULL



          So you'll need a different way to achieve this than xargs -I alone.




          • You could, for example, ask xargs to run a shell – which will then interpret/split/unquote the input the same way that you'd expect from a shell:



            find … | sort | xargs | xargs -I bash -c "pdftk cat output union.pdf"


            The element following -c will become pdftk ./001.pdf ./002.pdf … cat output union.pdf and bash will split it into words as expected. (But note that because xargs doesn't do quoting, this will split up filenames that happen to contain spaces, and will give weird results when filenames contain special characters.)




          • You could use the shell's "process substitution" feature:



            pdftk $(find … | sort) cat output union.pdf


            This will split the resulting text at any whitespace (just like $var variable expansion). The lines don't need to be joined first. But it will have the same issues with filenames containing spaces, and slightly fewer issues with special characters.




          • Recommended: You could avoid 'find' and 'xargs' entirely and use the interactive shell's built-in wildcard matching directly:



            pdftk *.pdf cat output union.pdf


            Ordinary * isn't recursive, but in Bash or zsh you also have ** which is the recursive mode:



            shopt -s globstar # enable the feature (only needed in bash)

            pdftk **/*.pdf cat output union.pdf


            (The match results will always be sorted, at least in shells using the POSIX sh language. And because the shell directly expands each filename to an individual command-line element, there will be no quoting issues at all, even with unusal filenames.)







          share|improve this answer




















          • 1





            Aaah, wonderful insightful answer! I thought using xargs was the same as typing a command in bash, but now I understand the difference.

            – Mizar
            Apr 11 at 12:11






          • 1





            There are other situations which do work like that (e.g. su someuser -c "a long command" always calls a shell; and ssh somehost a long command deliberately joins and quotes all words so that the server could split them back through a shell).

            – grawity
            Apr 11 at 12:30











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "3"
          ;
          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: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          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
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1424180%2fusing-xargs-with-pdftk%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          8















          Does xargs pass the argument to pdftk with surrounding quotes?




          Yes and no, but technically no. xargs does no quoting, and pdftk does no unquoting either.



          The way programs receive command-line arguments in Linux/Unix isn't by using a single string that needs to be quoted and unquoted – that's just how the user-facing "command shell" language works, and quotes are interpreted by your shell, not by programs themselves. (This is the opposite of how Windows does it.)



          Internally programs are started using an array (/list/vector) of strings, which inherently preserves the exact text contents and separation of every element, so it doesn't really use quoting or escaping in the first place. (That is – unless you have to nest it, in which case it's back to string quoting and parsing, as you'll see below...)



          For example, your command line is parsed into this (using C-like array syntax for example, but the quotes aren't actually part of the strings):



          1. "find", ".", "-iname", "*.pdf", NULL
          2. "sort", NULL
          3. "xargs", NULL
          4. "xargs", "-I", "", "pdftk", "", "cat", "output", "union.pdf", NULL
          └─xargs uses these elements as the command─┘


          So when xargs reads a line of input (because -I sets it to line-by-line mode), it replaces the symbols in each individual element with the input line, without rearranging the elements in any way. Then it asks the OS to runs the result:



          "pdftk", "./001.pdf ./002.pdf ./003.pdf …", "cat", "output", "union.pdf", NULL



          So you'll need a different way to achieve this than xargs -I alone.




          • You could, for example, ask xargs to run a shell – which will then interpret/split/unquote the input the same way that you'd expect from a shell:



            find … | sort | xargs | xargs -I bash -c "pdftk cat output union.pdf"


            The element following -c will become pdftk ./001.pdf ./002.pdf … cat output union.pdf and bash will split it into words as expected. (But note that because xargs doesn't do quoting, this will split up filenames that happen to contain spaces, and will give weird results when filenames contain special characters.)




          • You could use the shell's "process substitution" feature:



            pdftk $(find … | sort) cat output union.pdf


            This will split the resulting text at any whitespace (just like $var variable expansion). The lines don't need to be joined first. But it will have the same issues with filenames containing spaces, and slightly fewer issues with special characters.




          • Recommended: You could avoid 'find' and 'xargs' entirely and use the interactive shell's built-in wildcard matching directly:



            pdftk *.pdf cat output union.pdf


            Ordinary * isn't recursive, but in Bash or zsh you also have ** which is the recursive mode:



            shopt -s globstar # enable the feature (only needed in bash)

            pdftk **/*.pdf cat output union.pdf


            (The match results will always be sorted, at least in shells using the POSIX sh language. And because the shell directly expands each filename to an individual command-line element, there will be no quoting issues at all, even with unusal filenames.)







          share|improve this answer




















          • 1





            Aaah, wonderful insightful answer! I thought using xargs was the same as typing a command in bash, but now I understand the difference.

            – Mizar
            Apr 11 at 12:11






          • 1





            There are other situations which do work like that (e.g. su someuser -c "a long command" always calls a shell; and ssh somehost a long command deliberately joins and quotes all words so that the server could split them back through a shell).

            – grawity
            Apr 11 at 12:30















          8















          Does xargs pass the argument to pdftk with surrounding quotes?




          Yes and no, but technically no. xargs does no quoting, and pdftk does no unquoting either.



          The way programs receive command-line arguments in Linux/Unix isn't by using a single string that needs to be quoted and unquoted – that's just how the user-facing "command shell" language works, and quotes are interpreted by your shell, not by programs themselves. (This is the opposite of how Windows does it.)



          Internally programs are started using an array (/list/vector) of strings, which inherently preserves the exact text contents and separation of every element, so it doesn't really use quoting or escaping in the first place. (That is – unless you have to nest it, in which case it's back to string quoting and parsing, as you'll see below...)



          For example, your command line is parsed into this (using C-like array syntax for example, but the quotes aren't actually part of the strings):



          1. "find", ".", "-iname", "*.pdf", NULL
          2. "sort", NULL
          3. "xargs", NULL
          4. "xargs", "-I", "", "pdftk", "", "cat", "output", "union.pdf", NULL
          └─xargs uses these elements as the command─┘


          So when xargs reads a line of input (because -I sets it to line-by-line mode), it replaces the symbols in each individual element with the input line, without rearranging the elements in any way. Then it asks the OS to runs the result:



          "pdftk", "./001.pdf ./002.pdf ./003.pdf …", "cat", "output", "union.pdf", NULL



          So you'll need a different way to achieve this than xargs -I alone.




          • You could, for example, ask xargs to run a shell – which will then interpret/split/unquote the input the same way that you'd expect from a shell:



            find … | sort | xargs | xargs -I bash -c "pdftk cat output union.pdf"


            The element following -c will become pdftk ./001.pdf ./002.pdf … cat output union.pdf and bash will split it into words as expected. (But note that because xargs doesn't do quoting, this will split up filenames that happen to contain spaces, and will give weird results when filenames contain special characters.)




          • You could use the shell's "process substitution" feature:



            pdftk $(find … | sort) cat output union.pdf


            This will split the resulting text at any whitespace (just like $var variable expansion). The lines don't need to be joined first. But it will have the same issues with filenames containing spaces, and slightly fewer issues with special characters.




          • Recommended: You could avoid 'find' and 'xargs' entirely and use the interactive shell's built-in wildcard matching directly:



            pdftk *.pdf cat output union.pdf


            Ordinary * isn't recursive, but in Bash or zsh you also have ** which is the recursive mode:



            shopt -s globstar # enable the feature (only needed in bash)

            pdftk **/*.pdf cat output union.pdf


            (The match results will always be sorted, at least in shells using the POSIX sh language. And because the shell directly expands each filename to an individual command-line element, there will be no quoting issues at all, even with unusal filenames.)







          share|improve this answer




















          • 1





            Aaah, wonderful insightful answer! I thought using xargs was the same as typing a command in bash, but now I understand the difference.

            – Mizar
            Apr 11 at 12:11






          • 1





            There are other situations which do work like that (e.g. su someuser -c "a long command" always calls a shell; and ssh somehost a long command deliberately joins and quotes all words so that the server could split them back through a shell).

            – grawity
            Apr 11 at 12:30













          8












          8








          8








          Does xargs pass the argument to pdftk with surrounding quotes?




          Yes and no, but technically no. xargs does no quoting, and pdftk does no unquoting either.



          The way programs receive command-line arguments in Linux/Unix isn't by using a single string that needs to be quoted and unquoted – that's just how the user-facing "command shell" language works, and quotes are interpreted by your shell, not by programs themselves. (This is the opposite of how Windows does it.)



          Internally programs are started using an array (/list/vector) of strings, which inherently preserves the exact text contents and separation of every element, so it doesn't really use quoting or escaping in the first place. (That is – unless you have to nest it, in which case it's back to string quoting and parsing, as you'll see below...)



          For example, your command line is parsed into this (using C-like array syntax for example, but the quotes aren't actually part of the strings):



          1. "find", ".", "-iname", "*.pdf", NULL
          2. "sort", NULL
          3. "xargs", NULL
          4. "xargs", "-I", "", "pdftk", "", "cat", "output", "union.pdf", NULL
          └─xargs uses these elements as the command─┘


          So when xargs reads a line of input (because -I sets it to line-by-line mode), it replaces the symbols in each individual element with the input line, without rearranging the elements in any way. Then it asks the OS to runs the result:



          "pdftk", "./001.pdf ./002.pdf ./003.pdf …", "cat", "output", "union.pdf", NULL



          So you'll need a different way to achieve this than xargs -I alone.




          • You could, for example, ask xargs to run a shell – which will then interpret/split/unquote the input the same way that you'd expect from a shell:



            find … | sort | xargs | xargs -I bash -c "pdftk cat output union.pdf"


            The element following -c will become pdftk ./001.pdf ./002.pdf … cat output union.pdf and bash will split it into words as expected. (But note that because xargs doesn't do quoting, this will split up filenames that happen to contain spaces, and will give weird results when filenames contain special characters.)




          • You could use the shell's "process substitution" feature:



            pdftk $(find … | sort) cat output union.pdf


            This will split the resulting text at any whitespace (just like $var variable expansion). The lines don't need to be joined first. But it will have the same issues with filenames containing spaces, and slightly fewer issues with special characters.




          • Recommended: You could avoid 'find' and 'xargs' entirely and use the interactive shell's built-in wildcard matching directly:



            pdftk *.pdf cat output union.pdf


            Ordinary * isn't recursive, but in Bash or zsh you also have ** which is the recursive mode:



            shopt -s globstar # enable the feature (only needed in bash)

            pdftk **/*.pdf cat output union.pdf


            (The match results will always be sorted, at least in shells using the POSIX sh language. And because the shell directly expands each filename to an individual command-line element, there will be no quoting issues at all, even with unusal filenames.)







          share|improve this answer
















          Does xargs pass the argument to pdftk with surrounding quotes?




          Yes and no, but technically no. xargs does no quoting, and pdftk does no unquoting either.



          The way programs receive command-line arguments in Linux/Unix isn't by using a single string that needs to be quoted and unquoted – that's just how the user-facing "command shell" language works, and quotes are interpreted by your shell, not by programs themselves. (This is the opposite of how Windows does it.)



          Internally programs are started using an array (/list/vector) of strings, which inherently preserves the exact text contents and separation of every element, so it doesn't really use quoting or escaping in the first place. (That is – unless you have to nest it, in which case it's back to string quoting and parsing, as you'll see below...)



          For example, your command line is parsed into this (using C-like array syntax for example, but the quotes aren't actually part of the strings):



          1. "find", ".", "-iname", "*.pdf", NULL
          2. "sort", NULL
          3. "xargs", NULL
          4. "xargs", "-I", "", "pdftk", "", "cat", "output", "union.pdf", NULL
          └─xargs uses these elements as the command─┘


          So when xargs reads a line of input (because -I sets it to line-by-line mode), it replaces the symbols in each individual element with the input line, without rearranging the elements in any way. Then it asks the OS to runs the result:



          "pdftk", "./001.pdf ./002.pdf ./003.pdf …", "cat", "output", "union.pdf", NULL



          So you'll need a different way to achieve this than xargs -I alone.




          • You could, for example, ask xargs to run a shell – which will then interpret/split/unquote the input the same way that you'd expect from a shell:



            find … | sort | xargs | xargs -I bash -c "pdftk cat output union.pdf"


            The element following -c will become pdftk ./001.pdf ./002.pdf … cat output union.pdf and bash will split it into words as expected. (But note that because xargs doesn't do quoting, this will split up filenames that happen to contain spaces, and will give weird results when filenames contain special characters.)




          • You could use the shell's "process substitution" feature:



            pdftk $(find … | sort) cat output union.pdf


            This will split the resulting text at any whitespace (just like $var variable expansion). The lines don't need to be joined first. But it will have the same issues with filenames containing spaces, and slightly fewer issues with special characters.




          • Recommended: You could avoid 'find' and 'xargs' entirely and use the interactive shell's built-in wildcard matching directly:



            pdftk *.pdf cat output union.pdf


            Ordinary * isn't recursive, but in Bash or zsh you also have ** which is the recursive mode:



            shopt -s globstar # enable the feature (only needed in bash)

            pdftk **/*.pdf cat output union.pdf


            (The match results will always be sorted, at least in shells using the POSIX sh language. And because the shell directly expands each filename to an individual command-line element, there will be no quoting issues at all, even with unusal filenames.)








          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 11 at 20:45

























          answered Apr 11 at 11:18









          grawitygrawity

          244k37515575




          244k37515575







          • 1





            Aaah, wonderful insightful answer! I thought using xargs was the same as typing a command in bash, but now I understand the difference.

            – Mizar
            Apr 11 at 12:11






          • 1





            There are other situations which do work like that (e.g. su someuser -c "a long command" always calls a shell; and ssh somehost a long command deliberately joins and quotes all words so that the server could split them back through a shell).

            – grawity
            Apr 11 at 12:30












          • 1





            Aaah, wonderful insightful answer! I thought using xargs was the same as typing a command in bash, but now I understand the difference.

            – Mizar
            Apr 11 at 12:11






          • 1





            There are other situations which do work like that (e.g. su someuser -c "a long command" always calls a shell; and ssh somehost a long command deliberately joins and quotes all words so that the server could split them back through a shell).

            – grawity
            Apr 11 at 12:30







          1




          1





          Aaah, wonderful insightful answer! I thought using xargs was the same as typing a command in bash, but now I understand the difference.

          – Mizar
          Apr 11 at 12:11





          Aaah, wonderful insightful answer! I thought using xargs was the same as typing a command in bash, but now I understand the difference.

          – Mizar
          Apr 11 at 12:11




          1




          1





          There are other situations which do work like that (e.g. su someuser -c "a long command" always calls a shell; and ssh somehost a long command deliberately joins and quotes all words so that the server could split them back through a shell).

          – grawity
          Apr 11 at 12:30





          There are other situations which do work like that (e.g. su someuser -c "a long command" always calls a shell; and ssh somehost a long command deliberately joins and quotes all words so that the server could split them back through a shell).

          – grawity
          Apr 11 at 12:30

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Super User!


          • 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%2fsuperuser.com%2fquestions%2f1424180%2fusing-xargs-with-pdftk%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

          Distance measures on a map of a game The 2019 Stack Overflow Developer Survey Results Are Inmin distance in a graphShortest distance path on contour plotHow to plot a tilted map?Finding points outside of a diskDelaunay link distanceAnnulus from GeoDisks: drawing a ring on a mapNegative Correlation DistanceFind distance along a path (GPS coordinates)Finding position at given distance in a GeoPathMathematics behind distance estimation using camera

          How to get a smooth, uniform ParametricPlot of a 2D Region?How to plot a complicated Region?How to exclude a region from ParametricPlotHow discretize a region placing vertices on a specific non-uniform gridHow to transform a Plot or a ParametricPlot into a RegionHow can I get a smooth plot of a bounded region?Smooth ParametricPlot3D with RegionFunction?Smooth border of a region ParametricPlotSmooth region boundarySmooth region plot from list of pointsGet minimum y of a certain x in a region

          Genealogie vun de Merowenger Vum Merowech bis zum Chilperich I. | Navigatiounsmenü