This commit is contained in:
2024-02-28 10:58:23 +01:00
parent 77e0105743
commit b0f177e355
2 changed files with 18 additions and 0 deletions

10
chiller_flowrate Executable file
View File

@@ -0,0 +1,10 @@
!#/bin/bash
expect << EOF
spawn telnet jf16mb-ctrl
expect -re ".*>"
send "watch /power_control_user/monitor | grep -i flow \r"
expect -re ".*>"
send "exit\r"
EOF

8
feedbacks_bernina Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
if [ -z "$1" ]
then
USER=$(zenity --entry --text="Enter user name for undulator pointing control" 2> /dev/null)
else
USER=$1
fi
ssh -J $USER@sf-gw $USER@sf-lca "/sf/ts/jddd/jddd/jddd-op -run -file /sf/ts/jddd/panels/SF/GeneralFeedback/ESBMaster.xml"