How can I convert DOS internal commands into external commands? For example, turn REN into a separate file form?
Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum
DOS stands for freedom, openness and progress. Let us work hard, learn from the openness and GNU spirit of FreeDOS and Linux, and together build and grow a free GNU GPL world!
#include <stdio.h>
int main(int argc, char* argv)
{
rename(argv,argv);
}
