pweingar / FoenixMCP

A portable kernel for the Foenix series of computers.
BSD 3-Clause "New" or "Revised" License
10 stars 5 forks source link

Added Copy Command and bug fix #18

Closed daschewie closed 3 years ago

daschewie commented 3 years ago

Changes

Behavior of copy command

Testing

/sd> DIR
code1.txt    10
code2.txt    20
code3.txt    30

/sd> COPY code*.txt code4.txt

/sd> DIR
code1.txt    10
code2.txt    20
code3.txt    30
code4.txt    60

/sd> MKDIR sample

/sd> DIR
code1.txt    10
code2.txt    20
code3.txt    30
code4.txt    60
sample/

/sd> COPY *.txt sample

/sd> CD sample

/sd/sample> DIR
code1.txt    10
code2.txt    20
code3.txt    30
code4.txt    60

Known Issues