Last active
June 13, 2022 17:17
-
-
Save lordmilko/49d3a4f7488ff36475d2d29dc2069418 to your computer and use it in GitHub Desktop.
Tail Context Menu Item - Right click text files to tail them!
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\txtfile\shell\Tail] | |
[HKEY_CURRENT_USER\SOFTWARE\Classes\txtfile\shell\Tail\command] | |
@="\"C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe\" -noexit -command \"function tail($path) {$host.ui.RawUI.WindowTitle = $path; gc $path -tail 10 -wait} tail\" \"'%1'\"" |
Such a great idea, thanks!
Great idea. Thanks!!!
Awesome! Thanks for saving me time lol :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is great! Thanks!