1
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.

Webプロ コマンドまとめ

Last updated at Posted at 2019-10-01

用語

用語 解説
ディレクトリ ほぼ「フォルダ」と同じ意味(厳密には違う)
ホームディレクトリ パソコンに入っているアカウントごとに用意されているディレクトリ 基本的に作ったファイルはここの中に保存する(ワードやエクセルなどのファイルもそう)

ディレクトリ表示

  • lsとはlistの略
  • 自分が今いるディレクトリの一つ下にあるディレクトリの一覧が表示される

MacかLinuxなら

ターミナル
ls

Windowsなら

コマンドプロンプト
dir

ディレクトリ移動

  • cdとはchange directoryの略
  • {ディレクトリ名}のディレクトリに移動
  • {ディレクトリ名}はlsあるいはdirのコマンドを打ったときに出てくるディレクトリを入れる
ターミナルorコマンドプロンプト
cd {ディレクトリ名}

# 例
cd php7
cd Desktop 
  • 一つ上のディレクトリに移動
ターミナルorコマンドプロンプト
cd ..
  • ホームディレクトリに移動(次の2つのうちどちらでも良い)
ターミナルorコマンドプロンプト
cd 
cd ~

サーバー起動

  • PHPでサーバーを起動
  • 起動後にlocalhost:{数字}にアクセスするとアクセスできる
  • {ディレクトリ名}はlsのコマンドを打ったときに出てくるディレクトリを入れる
  • 大文字と小文字を打ち間違えるとうまく起動しない
ターミナルorコマンドプロンプト
php -S localhost:{数字} -t {ディレクトリ名}

# 例
php -S localhost:8080 -t htdocs
1
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
1
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?