mirror of
https://github.com/leahneukirchen/mblaze
synced 2024-11-03 15:40:32 +00:00
ab80765c24
Fix a quoting bug on the side.
12 lines
141 B
Bash
Executable File
12 lines
141 B
Bash
Executable File
#!/bin/sh
|
|
# mmkdir DIRS... - create new maildirs
|
|
|
|
umask 077
|
|
|
|
r=0
|
|
for dir; do
|
|
mkdir -p "$dir"/cur "$dir"/new "$dir"/tmp || r=1
|
|
done
|
|
|
|
exit $r
|