41
retnikt
7y

Give some personality to your CMD!
1. Make a file called i.cmd and add the following text to it:
@echo off
echo me too
2. Move the file to somewhere in the system path (e.g. C:\Windows)
3. Enjoy!

Comments
  • 12
    For Linux / Mac:

    make an executable bash script called i and put it in a $PATH directory containing:

    #!/bin/bash
    echo me too
Add Comment