TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: baitang36 on May 06, 2020, 04:08:32 AM

Title: Merge two or more Fas files into one
Post by: baitang36 on May 06, 2020, 04:08:32 AM
Let's do an experiment
We have two Fas files, tmp1.fas and tmp2.fas
Load tmp1.fas in Acad and it will display "this is tmp1.fas"
load tmp2.fas and display "this is tmp2.fas"
Run cmd.exe, open a DOS window, and enter   copy /b tmp1.fas + tmp2.fas tmp3.fas
We get a file tmp3.fas
What will be displayed when tmp3.fas is loaded in Acad?
Title: Re: Merge two or more Fas files into one
Post by: baitang36 on May 06, 2020, 04:14:57 AM
(LOAD "D:/tmp3.fas") this is tmp1.fas
this is tmp2.fas

The effect is the same as that of loading these two files. We implemented the bundling of two Fas files into one.
 Is it fun?
Title: Re: Merge two or more Fas files into one
Post by: Rod on May 07, 2020, 02:23:27 AM
It is probably clever.
It is definately not fun.