How to initialize your KiCAD 10 project on the command line

TL;DR:

Inside the directory where you want to create the project, run

InitializeKiCad9Project.sh
wget -qO- https://raw.githubusercontent.com/ulikoehler/KiCAD-ProcessAutomation/master/InitializeKiCad10Project.sh | bash /dev/stdin MyProject

You should replace MyProject (at the end of the command) with your project name.

How it works

Our script is a simple bash script that creates the files that KiCAD creates when manually creating a new project.

It will create these files (MyProject is the default project name, but you can modify it using a command line argument):

The files are modelled after KiCAD 10.0.1 but we expect them to work with any recent KiCAD version.

See GitHub for the script source code

Run e.g. using

run_init_kicad.sh
bash InitializeKiCad10Project.sh MyProject

Check out similar posts by category: Electronics, KiCAD, Shell