To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

chgrp
Developer(s)AT&T Bell Laboratories
Initial releaseMay 1975; 48 years ago (1975-05)
Written inPlan 9: C
Operating systemUnix, Unix-like, Plan 9, Inferno, IBM i
PlatformCross-platform
TypeCommand
LicensePlan 9: MIT License

The chgrp (from change group) command may be used by unprivileged users on various operating systems to change the group associated with a file system object (such as a computer file, directory, or link) to one of which they are a member. A file system object has 3 sets of access permissions, one set for the owner, one set for the group and one set for others. Changing the group of an object could be used to change which users can write to a file.

YouTube Encyclopedic

  • 1/3
    Views:
    73 544
    3 157
    63 577
  • Linux Terminal - File Permissions! (Chmod, Chown and Chgrp)
  • Linux: Permissions: chown, chgrp
  • Linux Permissions - POSIX, chmod, chown, chgrp

Transcription

History

The chgrp command was originally developed as part of the Unix operating system by AT&T Bell Laboratories.

It is also available in the Plan 9 and Inferno operating systems and in most Unix-like systems.

The chgrp command has also been ported to the IBM i operating system.[1]

Syntax

chgrp [options] group FSO
  • The group parameter specifies the new group with which the files or directories should be associated. It may either be a symbolic name or an identifier.
  • The FSO specifies one or more file system objects, which may be the result of a glob expression like *.conf.

Frequently implemented options

-R recurse through subdirectories.

-v verbosely output names of objects changed. Most useful when "FSO" is a list.

-f force or forge ahead with other objects even if an error is encountered.

Example

$ ls -l *.conf
-rw-rw-r--   1 gbeeker  wheel          3545 Nov 04 2011  prog.conf
-rw-rw-r--   1 gbeeker  wheel          3545 Nov 04 2011  prox.conf
$ chgrp staff *.conf
$ ls -l *.conf
-rw-rw-r--   1 gbeeker  staff          3545 Nov 04 2011  prog.conf
-rw-rw-r--   1 gbeeker  staff          3545 Nov 04 2011  prox.conf

The above command changes the group associated with file prog.conf from wheel to staff (provided the executing user is a member of that group). This could be used to allow members of staff to modify the configuration for programs prog and prox.

See also

References

  1. ^ IBM. "IBM System i Version 7.2 Programming Qshell" (PDF). IBM. Archived (PDF) from the original on 2020-09-18. Retrieved 2020-09-05.

External links

This page was last edited on 19 August 2023, at 19:48
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.