Skip to content

Instantly share code, notes, and snippets.

@aielwaste
Last active October 3, 2018 17:45
Show Gist options
  • Save aielwaste/6742faf6951cc2b15e36365e8835d408 to your computer and use it in GitHub Desktop.
Save aielwaste/6742faf6951cc2b15e36365e8835d408 to your computer and use it in GitHub Desktop.
Print Directory in Sublime Text
@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