mirror of
https://github.com/markqvist/OpenModem.git
synced 2025-01-05 20:51:09 -05:00
18 lines
223 B
Plaintext
18 lines
223 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
DIRS="drv hw io scripts"
|
||
|
if [ $# != 1 ]; then
|
||
|
echo "Create a new core tree with subdirs:"
|
||
|
echo $DIRS
|
||
|
echo "usage $0 <core>"
|
||
|
exit 1
|
||
|
fi
|
||
|
CORE=$1
|
||
|
mkdir $CORE
|
||
|
cd $CORE
|
||
|
for dir in $DIRS
|
||
|
do
|
||
|
mkdir $dir
|
||
|
done
|
||
|
cd ..
|