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