Create a directory dir-perm in your HOME directory and set permissions to

d r w x - - - - - - Fill in the command chmod _____ dir-perm

The command to set permissions to "drwx------" for the directory "dir-perm" in the HOME directory would be:

```
chmod 700 ~/dir-perm
```

The "700" represents the permission code for the owner of the directory to have read, write, and execute permissions, while all other users have no permissions.