Last active
October 3, 2018 17:45
-
-
Save aielwaste/6742faf6951cc2b15e36365e8835d408 to your computer and use it in GitHub Desktop.
Print Directory in Sublime Text
This file contains hidden or 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 | |
dir %1 /-p /o:gn > "%temp%\Listing" | |
start /w "%ProgramFiles%\Sublime Text 3\sublime_text.exe" /p "%temp%\Listing" | |
del "%temp%\Listing" | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment