LoginSignup
2
1

More than 5 years have passed since last update.

Windowsでもls,pwd,clearコマンドを使いたい!

Last updated at Posted at 2018-11-19

目的

Windowsでもls,pwd,clearコマンドを使いたい!

方法

Windows標準のコマンドのエイリアスを作るようなバッチファイルを作ります。

  1. %WINDIR%\System32内に以下のバッチファイルを置く。

    ls.bat
    @echo off
    dir %1 %2 %3 
    
    pwd.bat
    @echo off
    @cd
    
    clear.bat
    @echo off
    cls
    
  2. コマンドプロンプト内で,「各バッチファイルのファイル名」を入力する

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