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?

TeraTermコマンド一覧

Posted at

pwd

現在いる位置を表示

cd

ディレクトリに移動

ls

ディレクトリの中身を表示

オプション
-a : ピリオド始まりのファイルやフォルダを表示
-l : ファイルの詳細を表示

mv

ファイル(またはディレクトリ)を移動・ファイル(ディレクトリ)の名称変更

構文
# mv 元のファイル(ディレクトリ) 変更後のファイル(ディレクトリ)名
オプション
-b : 上書き削除されるファイルのバックアップ
-f : 上書きの場合確認メッセージを表示させない
-i : 上書きされる場合は確認メッセージを表示する
-n : 移動先に同じ名称のファイルディレクトリが存在する場合は移動しない
-v : 詳細を表示する

mkdir

ディレクトリ(フォルダ)を作成する

構文
# mkdir [オプション] ディレクトリ名
オプション
-m : 作成するディレクトリのパーミッションを設定
-p : 必要に応じて親ディレクトリも作成
-v : 経過を表示

cat

ファイルの内容を表示

tail(Linux)

ファイルの最終行から数行を表示する

オプション
-f : ファイルの追記を監視する

sudo(Linux)

スーパーユーザ(=root)としてsudoに続くコマンドを実行する。
その瞬間だけroot権限になってコマンドを実行する。

使用例
sudo su -
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?