# change owner to root
cor() {
	chown \
		"0:0" \
		"${@}"
}

# change owner to user
cou() {
	chown \
		"1000:1000" \
		"${@}"
}