Search results
16 mar 2012 · If you are using Unix's find to search for files in a directory hierarchy, then the Powershell way is to use Get-ChildItem (alias is gci) cmdlet and filter the results with the Where-Object (alias is where) cmdlet. For example, to find all files (starting from C:\Users\ and recursively) with the word 'essential' in its name, use the following:
- Improve This Answer
Chętnie wyświetlilibyśmy opis, ale witryna, którą oglądasz,...
- Upvotes
So I wanted to make generic FIND command that behaves...
- Which
In Linux, we have the "which" command to find out the path...
- Is There an Equivalent of The Unix 'Look' Command on Windows
I'm looking for an equivalent of the unix look command,...
- Justin
Q&A for computer enthusiasts and power users. Stack Exchange...
- Improve This Answer
18 kwi 2011 · If you have WSL installed, you can simply use the file command on Windows file system folder /mnt/. Example: file /mnt/c/"Program Files"/Notepad++/notepad++.exe. The output will be something similar to: /mnt/c/Program Files/Notepad++/notepad++.exe: PE32+ executable (GUI) x86-64, for MS Windows
15 kwi 2020 · I'd like to be able to search files on a Windows machine using the command line instead of the GUI interface. For example, on Linux, I use: find . -name "*.c" -exec grep -Hn "sqlcommand" {} \;
19 lis 2020 · The find command is one of the most powerful tools in the Linux system administrators arsenal. It searches for files and directories in a directory hierarchy based on a user given expression and can perform user-specified action on each matched file.
11 lis 2021 · This guide will cover how to use the aptly named find command. This will help you search for files on your system using a variety of filters and parameters. It will also briefly cover the locate command, which can be used to search for files in a different way. Prerequisites
5 lip 2024 · Using the find command is straightforward. To find a file in Linux, open a terminal and use the following basic syntax: Replace “/path/to/search" with the directory where you want to start the search and customize the options and criteria based on your requirements. For example :
21 lis 2024 · In this guide, we’ll explore how to use the find command to locate files by name, type, size, and more. Let’s dive in! Follow these simple steps to search for a file by name in Linux: Open the terminal: On Debian or Ubuntu, press Ctrl + Alt + T to launch the terminal. You can also use wildcards to match patterns: