Created
March 12, 2013 16:33
-
-
Save nrubin/5144430 to your computer and use it in GitHub Desktop.
Barebones ls on Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
:: written by noam rubin (@nrubin) | |
:: I want my ls back! | |
if "%1" =="" ( :: no parameter, open current directory | |
dir /B "%CD%" | |
) else ( | |
dir /B "%1%" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment