2
1

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.

Windowsのコマンドプロンプトをcmderに置き換えて使いやすくした

Posted at

コマンドプロンプトが使いづらいので、cmderを導入し、コマンドも変更して使いやすくした。

インストール

公式サイトからcmderをダウンロード。

コマンドの置き換え

1.現状の設定を確認

doskey /macros

2.aliasを設定

doskey pwd = dir
doskey ls = dir
doskey mkdir = md $*
doskey mv = move $*
doskey rm = del $*
doskey mv = move $*
doskey cp = copy $*
doskey rm = del $*
doskey cat = type $*

3.macros.txtファイルに書き出し

doskey /macros > %USERPROFILE%\macros.txt

4.cmderの起動時パラメータとして以下を設定

& doskey /macrofile=%USERPROFILE%\macros.txt

参考

参考サイト

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?