11 lines
307 B
Bash
Executable File
11 lines
307 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Remove old junk
|
|
rm -f comms/OpenFOAM.lock
|
|
|
|
rmdir comms
|
|
|
|
#------------------------------------------------------------------------------
|