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 3 years have passed since last update.

ターミナルコマンド(ディレクトリ位置の移動と必要判断)

Last updated at Posted at 2021-07-07

私自身初心者なので、
ターミナルを使用してのインストールの際、
”このディレクトリでダウンロードしていいのか? ”とても迷ってしまった。

コマンド中に「ホームディレクトリに移動してから実行すること」が記載してあることを教えてもらってから、
その迷いが消えたので記録として残しました。
(また、コマンドをメモとしてリストにしました)

ターミナル入力の際、ディレクトリの移動が必要か分からない、、、

使用するコマンドをチェック
''ホームディレクトリ「~/」に移動してから実行されるコマンドの場合は不要''

$ touch ~/.ファイル名 (不要)
$ touch ファイル名 (必要)

(どこで実行するか不安な場合はホームディレクトリで実行)


ターミナル ファイル関係 コマンドメモ

コマンド 内容
% cd ホームディレクトリへ移動
% ls ファイル内容確認
% ls -la ファイル内容確認(.隠しファイル含)
% cd #1/#2/#3 ルート辿って#3に移動
% cd - 前の場所に戻る(深く潜って間違えたとき便利)
% pwd カレントディレクトリ表示
% cd .. 1つ上に移動
% cd ../../ 2つ上に移動

cdの後のディレクトリを選ぶ際[tab]を押すとリストが出てくるので便利

毎回自分の現在位置を確認する癖をつける

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?