0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

UNIXコマンド 勉強

Last updated at Posted at 2019-02-15

# 

## ドンべ

  • どん
\\\\
ls :フォルダの中を見る  
cd :フォルダ間の移動
cd..:上のフォルダへ移動
rm file:削除
copy . file:フォルダをつくる
mkdir:同上
pwd:現在のpass(今いるフォルダのアドレス)を表示
mv:move
gcc:コンパイル
history:コマンド入力の履歴

#include <stdio.h>

int main(void) {

    printf("こんにちは\n");

    return (0);

}
  Id CommandLine
  -- -----------
   1 ls
   2 copy . jiji.c
   3 ls
   4 ls
   5 cc .\gh.c\
   6 cd .\gh.c\
   7 ls
   8 cc .\donkoni.c
   9 gcc .\donkoni.c
  10 gcc .\donkoni.c
  11 ls
  12 .\a.exe
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?