repo.or.cz
/
GalaxyCodeBases.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
limit fstBC to 30bp in Python3 ver.
[GalaxyCodeBases.git]
/
etc
/
Server
/
ctl.sh
blob
1c4c2c4a34ccc53297cca7db4ad27793d7f128e0
1
#!/bin/bash
2
3
MYPS
=
`ps -u huxs|grep ffmpeg|awk '{print
$1
}'`
4
5
#echo ${MYPS}
6
7
if
[
"
$1
"
=
"s"
];
then
8
kill -TSTP
${MYPS}
9
else
10
kill -CONT
${MYPS}
11
fi
12
13
# $ crontab -l
14
# 24 8 * * * /bak/seqdata/files/FL/ctl.sh s
15
# 12 0 * * * /bak/seqdata/files/FL/ctl.sh go
16