9 lines
102 B
Bash
9 lines
102 B
Bash
#!/bin/sh
|
|
|
|
rm -rf work
|
|
mkdir work
|
|
|
|
# -p stops errors if the directory already exists
|
|
mkdir -p source
|
|
|