9 lines
305 B
Bash
Executable File
9 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
#------------------------------------------------------------------------------
|
|
|
|
(cd steady && ./Allclean)
|
|
|
|
(cd transient && ./Allclean)
|
|
|
|
#------------------------------------------------------------------------------ |