Forrest logo
back to context overview

chgrp

List of commands for chgrp:

  • chgrp:tldr:4807e chgrp: Change the owner group of a symbolic link.
    $ chgrp -h ${group} ${path-to-symlink}
    try on your machine
    explain this command
  • chgrp:tldr:8b1d1 chgrp: Recursively change the owner group of a directory and its contents.
    $ chgrp -R ${group} ${path-to-directory}
    try on your machine
    explain this command
  • chgrp:tldr:acbc5 chgrp: Change the owner group of a file/directory.
    $ chgrp ${group} ${filename_or_directory}
    try on your machine
    explain this command
  • chgrp:tldr:cf3c1 chgrp: Change the owner group of a file/directory to match a reference file.
    $ chgrp --reference=${path-to-reference_file} ${filename_or_directory}
    try on your machine
    explain this command
back to context overview