Angular + PowerShell | Cookbook
Create component for all folders in a directory
Get-ChildItem ..\samples\src | foreach { ng generate component app/pages/$_.name }
Tipps und Tricks für Entwickler und IT-Interessierte
Get-ChildItem ..\samples\src | foreach { ng generate component app/pages/$_.name }
brew install mysql
mysqld --verbose --initialize --datadir .\data --basedir D:\CLOUD\Environments\MySQL\8.0.22
Start Server
mysqld --console --datadir .\data --basedir D:\CLOUD\Environments\MySQL\8.0.22
Change file D:\TMP\init_root.sql
with the following content
ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewPassword';
Run
mysqld --console --init-file D:\TMP\init_root.sql --datadir .\data --basedir D:\CLOUD\Environments\MySQL\8.0.22