Why use mkdir -p work/docs work/logs work/links before copying organized files?
mkdir -p work/docs work/logs work/links
It copies all incoming files into those directories automatically.
It sets every created directory to permission mode p.
p
It removes any existing parent directory before recreation.
It creates needed parent directories and does not fail merely because a directory already exists.