10 lines
74 B
Bash
10 lines
74 B
Bash
#! /usr/bin/bash
|
|
|
|
automkdir() {
|
|
if mkdir "${1}" ; then
|
|
cd "${1}"
|
|
fi
|
|
}
|
|
|
|
|