Re: How do I all an interactive command?

2022-11-07 Thread ToddAndMargo via perl6-users
On 11/7/22 17:50, ToddAndMargo via perl6-users wrote: Hi All, I am scratching my head trying to figure out how to gather information fro a RAID controller from Raku for Windows. I need to issue the following commands to the controller's configuration utility:     hptraidconf     query array

How do I all an interactive command?

2022-11-07 Thread ToddAndMargo via perl6-users
Hi All, I am scratching my head trying to figure out how to gather information fro a RAID controller from Raku for Windows. I need to issue the following commands to the controller's configuration utility: hptraidconf query array exit I typically will creating a temporary batch/cmd

Re: How in Raku can a symlink be edited to a new target, if the target is a directory.

2022-11-07 Thread Richard Hainsworth
Ignore this message. It turns out I had set up my file structure incorrectly, so the description below is wrong and the problem is elsewhere. Raku handles a symlink to a directory correctly. On 07/11/2022 9:55 am, Richard Hainsworth wrote: I want - in a Raku program - update a symlink from 'p

How in Raku can a symlink be edited to a new target, if the target is a directory.

2022-11-07 Thread Richard Hainsworth
I want - in a Raku program - update a symlink from 'plug-v1' to 'plug-v2', where both plug-v1 and plug-v2 are sub-directories of 'src'. The symlink is 'plug'. I am using Ubuntu. First time I create symlink with 'src/plug-v1'.IO.symlink( 'plug' ); If now I want to change the link, then the fo