mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-01-13 08:38:14 +01:00
13 lines
167 B
Bash
Executable File
13 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
serv="pc8498"
|
|
f="jungfrauDetectorServerTest"
|
|
if [ "$#" -gt 0 ]; then
|
|
f=$1
|
|
fi
|
|
if [ "$#" -gt 1 ]; then
|
|
serv=$2
|
|
fi
|
|
tftp $serv -r $f -g
|
|
chmod a+xrw $f
|
|
|