3
4

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.

Macのターミナルコマンド(初歩)

Last updated at Posted at 2019-11-07

Macのターミナルでの基本操作コマンドを記録します。
#pwd

pwd #自分の現在位置を表示

自分の現在位置は「カレントディレクトリ」とよぶ
pwdは居場所確認なので頻繁に使う
#cd

cd /home/desktop/  # デスクトップに移動
cd ..  #1つ上のディレクトリに移動
cd ~/  #ホームディレクトリに移動

絶対パスと相対パスがある
.はカレントディレクトリを表し、..は一つ上のディレクトリを表す
※入力途中でtabを1回入力すれば残りのコマンドやディレクトリ名が入力補完される
#ls

ls  #ディレクトリの内容を表示
ls -l  #ファイルの詳細情報を含めて表示
ls -a  #隠しファイルも含めてすべて表示
ls −la  #隠しファイルを含めてファイルの詳細情報をすべて表示
ls -1 #リストを縦に並べる
ls -lr  #逆順に表示
ls -tl #更新時間順に表示

listの略
「.」を先頭につけたファイルは隠しファイルとなる
隠しファイルは名前の通り、通常表示されない

#sudo

sudo 実行したいコマンド#管理者権限を付与

「Operation not permitted」など管理者権限がないエラーの場合に
sudoを先頭に付けてコマンドを実行する

#mkdir,cp,mv

mkdir ~/Desktop/work #デスクトップにworkディレクトリを作成
cp test1.txt ~/Desktop/work/test2.txt #test1.txtをコピーしtest2.txtを作成
mv ~/Desktop/work/test2.txt ~/Desktop #デスクトップに移動
mv test2.txt test3.txt #リネーム

#touch,rm

touch test.txt #ファイルを作成する
rm test.txt #ファイルを削除する

#vim

vim test.txt #ファイルを編集する

編集画面に入るので、以下キーで切り替えをする。
INSERTモード⇀「aキー」or「iキー」を押す
NSERTモードを抜ける⇀「Escキー」を押す
保存⇀「:w」
保存して終了⇀「:wq」
保存しないで終了⇀「:q」

基本はここまで。

3
4
1

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
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?