search for: schwidom

Displaying 19 results from an estimated 19 matches for "schwidom".

2019 Jun 11
3
[R] Open a file which name contains a tilde
...and while I haven't run a study or anything, I strongly suspect its that "everyone" else is already on the "no tildes in filenames" bandwagon, so this behavior, even if technically a bug, has no ability to cause them problems. Best, ~G On Tue, Jun 11, 2019 at 8:25 AM Frank Schwidom <schwidom at gmx.net> wrote: > Hi, > > yes, I have seen this package and it has the same tilde expanding problem. > > Please excuse me I will cc this answer to r-help and r-devel to keep the > discussion running. > > Kind regards, > Frank Schwidom > > On 2019...
2019 Jun 11
2
[R] Open a file which name contains a tilde
...r Linux machine you can use file.rename on Windows to change the names. My inclination would be to use a bash script on Linux to change the names, but if you are not comfortable with bash try the Windows approach. Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, Jun 11, 2019 at 1:13 PM Frank Schwidom <schwidom at gmx.net> wrote: > Hi Gabriel, > > I actually want to make renames over thousands of files. But if I am not > able to express the source filename of the rename operation I will not be > able to get the work done. Besides the fact that there are issues I think >...
2019 Jun 12
2
[R] Open a file which name contains a tilde
...My inclination would be to use a bash script on Linux to change the names, >> but if you are not comfortable with bash try the Windows approach. >> >> Bill Dunlap >> TIBCO Software >> wdunlap tibco.com >> >> >> On Tue, Jun 11, 2019 at 1:13 PM Frank Schwidom <schwidom at gmx.net> wrote: >> >>> Hi Gabriel, >>> >>> I actually want to make renames over thousands of files. But if I am not >>> able to express the source filename of the rename operation I will not be >>> able to get the work done. Be...
2019 Jun 06
4
Open a file which name contains a tilde
On Wed, 5 Jun 2019 18:07:15 +0200 Frank Schwidom <schwidom at gmx.net> wrote: > +> path.expand("a ~ b") > [1] "a /home/user b" > How can I switch off any file crippling activity? It doesn't seem to be possible if readline is enabled and works correctly. Calls to path.expand [1] end up [2] in R_Expan...
2019 Jun 13
2
[R] Open a file which name contains a tilde
...t; > >> but if you are not comfortable with bash try the Windows approach. > > >> > > >> Bill Dunlap > > >> TIBCO Software > > >> wdunlap tibco.com > > >> > > >> > > >> On Tue, Jun 11, 2019 at 1:13 PM Frank Schwidom <schwidom at gmx.net> > > wrote: > > >> > > >>> Hi Gabriel, > > >>> > > >>> I actually want to make renames over thousands of files. But if I am > > not > > >>> able to express the source filename of the renam...
2019 Jun 11
0
[R] Open a file which name contains a tilde
...ndows to change the names. > My inclination would be to use a bash script on Linux to change the names, > but if you are not comfortable with bash try the Windows approach. > > Bill Dunlap > TIBCO Software > wdunlap tibco.com > > > On Tue, Jun 11, 2019 at 1:13 PM Frank Schwidom <schwidom at gmx.net> wrote: > >> Hi Gabriel, >> >> I actually want to make renames over thousands of files. But if I am not >> able to express the source filename of the rename operation I will not be >> able to get the work done. Besides the fact that there...
2019 Jun 11
0
[R] Open a file which name contains a tilde
...g, I strongly suspect its that "everyone" > else is already on the "no tildes in filenames" bandwagon, so this > behavior, even if technically a bug, has no ability to cause them > problems. > Best, > ~G > On Tue, Jun 11, 2019 at 8:25 AM Frank Schwidom <[1]schwidom at gmx.net> > wrote: > > Hi, > > yes, I have seen this package and it has the same tilde expanding > problem. > > Please excuse me I will cc this answer to r-help and r-devel to keep the > discussion running. > > K...
2019 Jun 12
0
[R] Open a file which name contains a tilde
...pt on Linux to change the > names, > >> but if you are not comfortable with bash try the Windows approach. > >> > >> Bill Dunlap > >> TIBCO Software > >> wdunlap tibco.com > >> > >> > >> On Tue, Jun 11, 2019 at 1:13 PM Frank Schwidom <schwidom at gmx.net> > wrote: > >> > >>> Hi Gabriel, > >>> > >>> I actually want to make renames over thousands of files. But if I am > not > >>> able to express the source filename of the rename operation I will not > be >...
2019 Jun 13
0
[R] Open a file which name contains a tilde
...are not comfortable with bash try the Windows approach. >> > >> >> > >> Bill Dunlap >> > >> TIBCO Software >> > >> wdunlap tibco.com >> > >> >> > >> >> > >> On Tue, Jun 11, 2019 at 1:13 PM Frank Schwidom <schwidom at gmx.net> >> > wrote: >> > >> >> > >>> Hi Gabriel, >> > >>> >> > >>> I actually want to make renames over thousands of files. But if I am >> > not >> > >>> able to express the...
2019 Jun 11
0
[R] Open a file which name contains a tilde
Hi, yes, I have seen this package and it has the same tilde expanding problem. Please excuse me I will cc this answer to r-help and r-devel to keep the discussion running. Kind regards, Frank Schwidom On 2019-06-11 09:12:36, G?bor Cs?rdi wrote: > Just in case, have you seen the fs package? > https://fs.r-lib.org/ > > Gabor > > On Tue, Jun 11, 2019 at 7:51 AM Frank Schwidom <schwidom at gmx.net> wrote: > > > > Hi, > > > > to get rid of any possible...
2019 Jun 05
6
Open a file which name contains a tilde
Hi, As I can see via path.expand a filename which contains a tilde anywhere gets automatically crippled. +> path.expand("a ~ b") [1] "a /home/user b" +> path.expand("a ~ b ~") [1] "a /home/user b /home/user" I want to open a file regardless whether its name contains any character unless 0. The unix filesystem allow the creation of such files, it
2019 Jun 05
6
Open a file which name contains a tilde
Hi, As I can see via path.expand a filename which contains a tilde anywhere gets automatically crippled. +> path.expand("a ~ b") [1] "a /home/user b" +> path.expand("a ~ b ~") [1] "a /home/user b /home/user" I want to open a file regardless whether its name contains any character unless 0. The unix filesystem allow the creation of such files, it
2019 Jun 14
1
[R] Open a file which name contains a tilde
...tinguish between a string which is passed to the filesystem calls and some convenience expansion mechanisms. But it is like it is. For my need I created a solution which takes strings unaltered and so I can fulfil my work. And for whom who is interested in it, can take a look: https://github.com/schwidom/simplefs Suggestions are welcome. Kind regards Frank Schwidom On 2019-06-12 12:50:12, John via R-help wrote: > On Wed, 5 Jun 2019 18:07:15 +0200 > Frank Schwidom <schwidom at gmx.net> wrote: > > In reading file names, names with spaces require escaping of the > spaces, and...
2019 Jun 07
2
[R] Open a file which name contains a tilde
...~/.newsrc ~/.R/*"))) # run wc on some files I doubt that this was intended by R-core, but perhaps the readline devs had this in mind. Chuck > On Thu, 6 Jun 2019 at 23:04, Ivan Krylov <krylov.r00t at gmail.com> wrote: > >> On Wed, 5 Jun 2019 18:07:15 +0200 >> Frank Schwidom <schwidom at gmx.net> wrote: >> >>> +> path.expand("a ~ b") >>> [1] "a /home/user b" >> >>> How can I switch off any file crippling activity? >> >> It doesn't seem to be possible if readline is enabled and works...
2019 Jun 06
0
[R] Open a file which name contains a tilde
...ug? It looks like a bug in R, but not necessarily a bug in libreadline: we may just be using tilde_expand improperly. Duncan Murdoch > > > On Thu, 6 Jun 2019 at 23:04, Ivan Krylov <krylov.r00t at gmail.com> wrote: > >> On Wed, 5 Jun 2019 18:07:15 +0200 >> Frank Schwidom <schwidom at gmx.net> wrote: >> >>> +> path.expand("a ~ b") >>> [1] "a /home/user b" >> >>> How can I switch off any file crippling activity? >> >> It doesn't seem to be possible if readline is enabled and works &gt...
2019 Jun 06
0
[R] Open a file which name contains a tilde
How can expanding tildes anywhere but the beginning of a file name NOT be considered a bug? On Thu, 6 Jun 2019 at 23:04, Ivan Krylov <krylov.r00t at gmail.com> wrote: > On Wed, 5 Jun 2019 18:07:15 +0200 > Frank Schwidom <schwidom at gmx.net> wrote: > > > +> path.expand("a ~ b") > > [1] "a /home/user b" > > > How can I switch off any file crippling activity? > > It doesn't seem to be possible if readline is enabled and works > correctly. > > Ca...
2019 Jun 08
0
[R] Open a file which name contains a tilde
...> > I doubt that this was intended by R-core, but perhaps the readline devs > had this in mind. > > Chuck > > > > On Thu, 6 Jun 2019 at 23:04, Ivan Krylov <krylov.r00t at gmail.com> wrote: > > > >> On Wed, 5 Jun 2019 18:07:15 +0200 > >> Frank Schwidom <schwidom at gmx.net> wrote: > >> > >>> +> path.expand("a ~ b") > >>> [1] "a /home/user b" > >> > >>> How can I switch off any file crippling activity? > >> > >> It doesn't seem to be possible i...
2019 Jun 08
0
[R] Open a file which name contains a tilde
...intended by R-core, but perhaps the readline devs >> had this in mind. >> >> Chuck >> >> >>> On Thu, 6 Jun 2019 at 23:04, Ivan Krylov <krylov.r00t at gmail.com> wrote: >>> >>>> On Wed, 5 Jun 2019 18:07:15 +0200 >>>> Frank Schwidom <schwidom at gmx.net> wrote: >>>> >>>>> +> path.expand("a ~ b") >>>>> [1] "a /home/user b" >>>> >>>>> How can I switch off any file crippling activity? >>>> >>>> It doesn't...
2012 Feb 02
1
possibly Error in R version 2.12.1 (2010-12-16)
Hi, the following Code demonstrates an possibly Error in R (or you can explain me, why this happens, thanks in advance) Code: ##################################### testClass <- function( stackData= c()) { list( write= function( ...) { sChain= "" for( s in c( stackData, ...)) { sChain= paste( sChain, '"', sub( '"',