Search notes:

Script: fb.ps1

fb stands for find below. It uses the PowerShell cmdlet get-childItem to search for files that match the given wildcard under the current directory.
# fb = Find below
#
# V.3
#
# use fullName in output to emulate "dir /b /s"
#
param (
   [string] $wildcard
)

get-childItem -force -errorAction silentlyContinue -recurse -filter $wildcard |
select-object -expandProperty fullName  # use -expandProperty so that output is not truncated, see https://stackoverflow.com/q/70694197/180275
Github repository scripts-and-utilities, path: /fb.ps1

See also

fb.bat
Scripts

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759390575, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/tools/scripts/personal/fb_ps1(55): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78