LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   comands (https://www.linuxquestions.org/questions/linux-general-1/comands-7120/)

vicente 10-01-2001 04:38 PM

comands
 
i´m looking for a complet list of all the linux comands if some one can help ...
thanks

isajera 10-01-2001 05:34 PM

all of them?... :) not going to happen. there's several thousand...

i'm guessing, however, that you are referring primarily to common shell commands.

cp, mv, rm, mkdir, rmdir, man, kill, grep, sed, awk, vi...

vicente 10-01-2001 06:35 PM

i´m looking for the larger one with explanactions availabel on line cause i want from console mode to writte compile..... small c codes like this one :

#include<grafics.h>
#include<conio.h>

void grafics(void) ;

main () {

int r ;
grafics () ;
for (r=5 ; r<=200 ; r+5) circle(320, 240, r) ;
getch () ;
closegraph () ;

}

void grafics(void) {
int gd=DETECT, gm;
initgraph (&gd, &gm, "c:\\tc") ;
}

I want to be able to writte compile put in floppy and execut , i have a book and i need to make this examples to start trying to learn c

d3funct 10-01-2001 07:41 PM

Sure I'll give you a link to everything you need to know to run linux . Have fun. :study:

isajera 10-02-2001 01:51 AM

..cc. gcc. g++

if you're going to learn c, you going to need the kernighan and ritchie c bible. any bookstore with a programming section will have it.

adirotaru 10-02-2001 03:05 PM

C compiling ...
 
You can compile your program with :

gcc -c program_name.c or gcc -c program_name.cc

then if you got object file program_name.o

gcc -o executable_name program_name.o

All of this make an executable with executable_name name.

I hope there is something and help you .

Regards.


All times are GMT -5. The time now is 03:46 PM.