Re: [PLUG] Using curl for file transfer

2021-02-09 Thread Tomas Kuchta
Is the GUI opensource? Could you modify the code to properly handle @ in the user name? This does not look like curl problem - in my experience curl command line accepts @ in --user without issues. I am sorry, I was hoping that there is curl command line involved somehow. -T On Tue, Feb 9, 2021

Re: [PLUG] Using curl for file transfer

2021-02-09 Thread Michael Barnes
On Tue, Feb 9, 2021 at 7:28 PM Tomas Kuchta wrote: > On Tue, Feb 9, 2021, 15:41 Ken Stephens > wrote: > > > Single quotes around the email addess? > > > > . > > > I think that there may be more to the problem description. > > Curl is command line tool OP mentions box/window - that would suggest

Re: [PLUG] Using curl for file transfer

2021-02-09 Thread Tomas Kuchta
On Tue, Feb 9, 2021, 15:41 Ken Stephens wrote: > Single quotes around the email addess? > > . I think that there may be more to the problem description. Curl is command line tool OP mentions box/window - that would suggest some GUI contraption where escaping or quoting will not work as in shel

Re: [PLUG] Using curl for file transfer

2021-02-09 Thread Ken Stephens
Single quotes around the email addess? On Tue, Feb 9, 2021 at 12:09 PM Michael Barnes wrote: > I use a program that uses curl to automate ftp file transfers. The problem > I have run into is the username for the ftp account is an email address ( > u...@host.com). When I enter the information in

Re: [PLUG] Using curl for file transfer

2021-02-09 Thread Bill Barry
On Tue, Feb 9, 2021 at 2:09 PM Michael Barnes wrote: > > I use a program that uses curl to automate ftp file transfers. The problem > I have run into is the username for the ftp account is an email address ( > u...@host.com). When I enter the information in the window to edit the > downloads, I pu

[PLUG] Using curl for file transfer

2021-02-09 Thread Michael Barnes
I use a program that uses curl to automate ftp file transfers. The problem I have run into is the username for the ftp account is an email address ( u...@host.com). When I enter the information in the window to edit the downloads, I put in the host information, then in the user box, I put u...@host

Re: [PLUG] Strange mv behavior

2021-02-09 Thread Rich Shepard
On Tue, 9 Feb 2021, Galen Seitz wrote: The shell thinks you want to pass three arguments to mv. If you have spaces in filenames, the filename must be quoted, otherwise the shell thinks you are referring to two separate files. Galen, Sigh. I know that file names in spaces need to be quoted but

Re: [PLUG] Strange mv behavior

2021-02-09 Thread TomasK
This is not strange behavior - space is command line argument separator in shells. Escape (precede) the space with backslash \ OR quote the file name with the space inside "file name" or 'file name'. -T On Tue, 2021-02-09 at 09:25 -0800, Rich Shepard wrote: > I found where OBS studio puts the lo

Re: [PLUG] Strange mv behavior

2021-02-09 Thread Galen Seitz
On 2/9/21 9:25 AM, Rich Shepard wrote: I found where OBS studio puts the logs (~/.config/obs-studio/logs/) where they are listed with a space between the date and the time. When I try to mv the spacey one to one without spaces I cannot: $ mv 2021-02-09 06-56-46.txt 2021-02-09-06-56-46.txt mv: t

[PLUG] Strange mv behavior

2021-02-09 Thread Rich Shepard
I found where OBS studio puts the logs (~/.config/obs-studio/logs/) where they are listed with a space between the date and the time. When I try to mv the spacey one to one without spaces I cannot: $ mv 2021-02-09 06-56-46.txt 2021-02-09-06-56-46.txt mv: target '2021-02-09-06-56-46.txt' is not a d