1.linux key
(case-sensitive)
./executable file : excution
cd / : move upper directory
cd .. : move uppermost directory
ls : show us a list
pwd : show us a current directory(Print Working Directory)
mkdir : Make a directory
rmdir : remove a directory
cp a.c b.c : copy a.c to b.c(relative path)
cp a.c ./../../../../home/wotjdaka/a.c(absolute path)
cp a.c /mnt/hgfs/One/wotjdaka/a.c : copy a.c to b.c(absolute path)
cp a.c /home/wotjdaka/a.c(absolute path)
위와같이 cp를 mv로 바꾸면 이동 또는 변경
/mnt/hgfs/One/wotjdaka디렉토리에서 cp /home/wotjdaka/f.c .을치면 전자의 디렉토리로 카피 해옴
rm -rf [디렉토리] : 파일이 있는 디렉토리 강제로 지우기
//indent=들여쓰다//
vi editor
vi .vimrc setting
리눅스 컴파일:gcc -o main main.c // run ./main //
-o(출력하라) main이란 이름으로 main.c를
윈도우 컴파일 cl main.c =>compiled to main.exe
2.preparation of programming
#include <stdio.h>
int main()
{
return 0;
}
RECENT COMMENT