Change files owner in debian package Change files owner in debian package unix unix

Change files owner in debian package


Use the find command:

find . -exec chown "${USER}:${USER}" {} +

This will change the permissions recursively starting from the working directory.