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 1 year has passed since last update.

【UNIXコマンド】覚えた用語一覧集

Last updated at Posted at 2022-10-03

概要

  • Javaの学習中に覚えた用語について、自分なりの理解を残す備忘録

ターミナルで使用するUNIXコマンド

コマンド 意味
pwd 現在ディレクトリのフルパス表示
cd ホームディレクトリへ移動
cd(dir名) 指定ディレクトリへ移動
mkdir (dir名) 新規ディレクトリを作成
rmdir (dir名) 空のディレクトリを削除
rm -r (dir名) 指定ディレクトリを中のファイルごと削除
cp -r (dirA) (dirB) ディレクトリAをディレクトリBにコピー
mv (dir名) ファイルをディレクトリへ移動
ls 現在ディレクトリのファイル一覧表示
ls (dir名) 指定ディレクトリのファイル一覧表示
cd - 直前のディレクトリへ移動(1つまでしか戻れない)
javac(dir名) 機械語に変換する
java(dir名) 変換した機械語を動かす

ターミナルでよく使うショートカット

  • Tabを押すと使用したコマンドを遡れる
  • ディレクトリ名の頭文字を入れて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?