11 lines
332 B
Bash
Executable File
11 lines
332 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
#-----------------------------------------------------------------------------
|
|
|
|
(cd overset-1 && ./Allrun)
|
|
|
|
(cd overset-2 && ./Allrun)
|
|
|
|
(cd background && ./Allrun)
|
|
|
|
#------------------------------------------------------------------------------ |