Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Beginner question with list

Oct
19
0
list dates produces
20070601
20070604
20070605


How can I captures these dates and use them elsewhere? I tried

list dates > %x (
echo dates= %x
)

What am I doing wrong?
 
On Sun, 02 Nov 2008 01:04:57 -0500, "JP Software Forums"
<[email protected]>,rawood11 <> wrote:


>list dates produces
>20070601
>20070604
>20070605
>
>
>How can I captures these dates and use them elsewhere? I tried
>
>list dates > %x (
> echo dates= %x
>)

FOR %line IN (@dates) ECHO %line

Or in a batch file,

DO line IN @dates
ECHO %line
ENDDO
 
Type OPTION to open the configuration dialog, then select the "Command Line" tab. In the "Editing" box at the top right, select "Insert." You may also want to swap the cursor sizes, e.g. set the overstrike cursor to 100% and the insert cursor to 15%.
 

Similar threads

Back
Top