Answers for "command search file"

0

search for files in linux terminal

find /path/to/folder/ -iname *file_name_portion*

#Example
find / -iname *test*

#Output

/downloads/test_2.txt
/downloads/test_1.csv
/home/ubuntu/first_test.txt
Posted by: Guest on June-23-2020
0

find name file in cmd

echo off
:start
cls

set /p input=masukan nama ? &
set result=| dir /a *.* /b | find "%input%"

echo %result%

pause
goto start
Posted by: Guest on October-29-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language