Search on site:  
 
 
Creating Code Server / Client Use
Case Command (guide)
Prior editing. git pull --rebase;
Save changes + upload remote. git add -A;
git commit -m "details";
git push origin master;
Reset (/!\ trash unstaged local) to remote state. git reset --hard;
git pull --rebase;
Go back to old version. git log;
git reset --hard 0ad5a7a6;
Check current state. git status;
Restore one file from remote. git fetch origin;
git restore --source=origin/master file;
Case Command
Client command. Select your case:
HOST=localhost;
HOST=raspberry-pi-06.cern.ch;
HOST=raspberry-pi-06.local;

Send command to unit port:
echo 'SET DISPLAY:0 MSG "Hello World"' | nc -q 1 ${HOST} 5000
Starting scpi_server. Connect to PI unit hosting scpi_server:
ssh user@PiServer.cern.ch

Or directly run scpi_server:
python -m scpi_server.main

Or start service if configured:
sudo systemctl start scpi_server.service