PSEverything and Out-FarPanel #23
nightroman
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
PSEverything is the PowerShell module for very fast file system searches.
Its command
Search-Everything
finds files and directories and returns their full paths.Out-FarPanel
is the PowerShellFar cmdlet for browsing objects in the object panel.Starting with v5.9.4 the object panel recognises file and directory paths, so that:
[F4]
opens files in the internal editor[Enter]
opens files using associated programs[Enter]
opens directories in the passive panel[Del]
deletes files with a confirmation dialogAs a result,
Search-Everything | Out-FarPanel
is a useful combo in PowerShellFar:Search-Everything
instantly finds files and foldersOut-FarPanel
is used for browsing and working with resultsExamples
Browse all directories with
*.lua
files:(1) from the current panel directory:
(2) all directories on the machine:
Browse all README files modified in the last 24 hours:
See also #22
Beta Was this translation helpful? Give feedback.
All reactions