11 lines
178 B
Bash
11 lines
178 B
Bash
#!/bin/sh
|
|
|
|
###################################
|
|
#
|
|
# Create common directory structure
|
|
#
|
|
###################################
|
|
|
|
mkdir $HOME/.config
|
|
mkdir -p $HOME/.local/{bin,share}
|