mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-28 17:10:03 +02: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
|
|
|