Fixed major flushing to disk issue.
This commit is contained in:
parent
1252ec447f
commit
0aa272bb90
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### nohup is needed to keep child process alive from java's
|
### nohup is needed to keep child process alive from java's
|
||||||
xterm -e ~/.animatedBGstarter.sh
|
xterm -e nohup ~/.animatedBGstarter.sh >/dev/null 2>&1
|
||||||
xterm -e ~/.animatedBGstarter2.sh
|
xterm -e nohup ~/.animatedBGstarter2.sh >/dev/null 2>&1
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### nohup is needed to keep child process alive from java's
|
### nohup is needed to keep child process alive from java's
|
||||||
xterm -e ~/.animatedBGstarter.sh
|
xterm -e nohup ~/.animatedBGstarter.sh >/dev/null 2>&1
|
||||||
xterm -e ~/.animatedBGstarter2.sh
|
xterm -e nohup ~/.animatedBGstarter2.sh >/dev/null 2>&1
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### nohup is needed to keep child process alive from java's
|
### nohup is needed to keep child process alive from java's
|
||||||
xterm -e ~/.animatedBGstarter.sh
|
xterm -e nohup ~/.animatedBGstarter.sh >/dev/null 2>&1
|
||||||
xterm -e ~/.animatedBGstarter2.sh
|
xterm -e nohup ~/.animatedBGstarter2.sh >/dev/null 2>&1
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
### nohup is needed to keep child process alive from java's
|
### nohup is needed to keep child process alive from java's
|
||||||
xterm -e ~/.animatedBGstarter.sh
|
xterm -e nohup ~/.animatedBGstarter.sh >/dev/null 2>&1
|
||||||
xterm -e ~/.animatedBGstarter2.sh
|
xterm -e nohup ~/.animatedBGstarter2.sh >/dev/null 2>&1
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
function main() {
|
||||||
|
for i in `ls`; do
|
||||||
|
if [[ -d "${i}" ]]; then
|
||||||
|
dpkg --build "${i}"
|
||||||
|
else
|
||||||
|
echo "Not a dir."
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
||||||
|
main;
|
Loading…
Reference in New Issue