search for: v3_chap02

Displaying 10 results from an estimated 10 matches for "v3_chap02".

2017 Dec 17
2
Dialect for shell scripts
..., or the manual edited to be more precise regarding . Many thanks. Rodrigo [1] https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Configure-and-cleanup [2] https://cran.r-project.org/doc/manuals/r-release/R-exts.html#FOOT25 [3] http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html [4] http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_04
2017 Dec 18
2
Dialect for shell scripts
...anks. >> >> Rodrigo >> >> [1] >> https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Configure-and-cleanup >> [2] https://cran.r-project.org/doc/manuals/r-release/R-exts.html#FOOT25 >> [3] http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html >> [4] >> http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_04 >> >> ______________________________________________ >> R-devel at r-project.org mailing list >> https://stat.ethz.ch/mailman/listinfo/r-devel > -- > I...
2017 Dec 18
0
Dialect for shell scripts
...regarding . > > Many thanks. > > Rodrigo > > [1] > https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Configure-and-cleanup > [2] https://cran.r-project.org/doc/manuals/r-release/R-exts.html#FOOT25 > [3] http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html > [4] > http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_04 > > ______________________________________________ > R-devel at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel -- I?aki ?car http://www.enchufa2.es @E...
2017 Dec 18
0
Dialect for shell scripts
...; >> > >> [1] > >> https://cran.r-project.org/doc/manuals/r-release/R-exts. > html#Configure-and-cleanup > >> [2] https://cran.r-project.org/doc/manuals/r-release/R-exts.html#FOOT25 > >> [3] http://pubs.opengroup.org/onlinepubs/9699919799/ > utilities/V3_chap02.html > >> [4] > >> http://pubs.opengroup.org/onlinepubs/9699919799/ > utilities/V3_chap02.html#tag_18_06_04 > >> > >> ______________________________________________ > >> R-devel at r-project.org mailing list > >> https://stat.ethz.ch/mailman/...
2019 Jan 25
0
[klibc:update-dash] [PARSER] Handle backslash newlines properly after dollar sign
...ehavior. > > > > > $ dash -c 'echo "$\ > > (pwd)"' > > $(pwd) > > > > Is it undefined behaviour in POSIX? > > No, it's well-defined, and dash is buggy. POSIX says: > > http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_03 > > "the shell shall break its input into tokens by applying the first > applicable rule below to the next character in its input" > > Rule 4 covers backslash handling, while rule 5 covers locating the end > of a word to be subject to $ expansion. Therefo...
2020 Mar 28
0
[klibc:update-dash] dash: [PARSER] Handle backslash newlines properly after dollar sign
...ehavior. > > > > > $ dash -c 'echo "$\ > > (pwd)"' > > $(pwd) > > > > Is it undefined behaviour in POSIX? > > No, it's well-defined, and dash is buggy. POSIX says: > > http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_03 > > "the shell shall break its input into tokens by applying the first > applicable rule below to the next character in its input" > > Rule 4 covers backslash handling, while rule 5 covers locating the end > of a word to be subject to $ expansion. Therefo...
2017 Dec 18
1
Dialect for shell scripts
...gt;> [1] >>>> https://cran.r-project.org/doc/manuals/r-release/R-exts. >> html#Configure-and-cleanup >>>> [2] https://cran.r-project.org/doc/manuals/r-release/R-exts.html#FOOT25 >>>> [3] http://pubs.opengroup.org/onlinepubs/9699919799/ >> utilities/V3_chap02.html >>>> [4] >>>> http://pubs.opengroup.org/onlinepubs/9699919799/ >> utilities/V3_chap02.html#tag_18_06_04 >>>> >>>> ______________________________________________ >>>> R-devel at r-project.org mailing list >>>> https:...
2019 Jan 25
0
[klibc:update-dash] eval: Variable assignments on functions are no longer persistent
...ions are no longer persistent Dirk Fieldhouse <fieldhouse at gmx.net> wrote: > > In POSIX.1-2017 ("simultaneously IEEE Std 1003.1?-2017 and The Open > Group Technical Standard Base Specifications, Issue 7") > <http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09>, > we read under '2.9.1 Simple Commands' > > "Variable assignments shall be performed as follows: > ... > - If the command name is a standard utility implemented as a function > (see XBD Utility), the effect of variable assignments shall be as if...
2020 Mar 28
0
[klibc:update-dash] dash: eval: Variable assignments on functions are no longer persistent
...299e4d7c3c1e8390194635bbab8 ] Dirk Fieldhouse <fieldhouse at gmx.net> wrote: > > In POSIX.1-2017 ("simultaneously IEEE Std 1003.1?-2017 and The Open > Group Technical Standard Base Specifications, Issue 7") > <http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09>, > we read under '2.9.1 Simple Commands' > > "Variable assignments shall be performed as follows: > ... > - If the command name is a standard utility implemented as a function > (see XBD Utility), the effect of variable assignments shall be as if...
2015 Feb 14
3
C5 BASH IF
On 02/14/2015 12:03 PM, Les Mikesell wrote: > On Sat, Feb 14, 2015 at 11:36 AM, J Martin Rushton > <martinrushton56 at btinternet.com> wrote: >> <snip> >>> To understand it completely you need to know the order of >>> operations as the shell makes multiple passes over the line, >>> parsing, processing metacharacters, and expanding variables. And