answersLogoWhite

0


Best Answer

+ adds a permission, - removes it, so +r and -w

Or by octal values. 4 sets read, 2 sets write, 1 sets execute . They are additive, each of the 3 digits referring respectively to the user, his group, and everyone.

So 400 means the user can only read the file, no one else can do anything

777 means anyone can do anything to it

744 means the user can do anything, all others can only read it

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: When using the chmod command for a specific file the what argument would add read permisission and remove write permission for the group permission?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What reflects an accurate argument in favor of a command economy?

Which statement reflects an accurate argument in favor of a command economy


Command line argument?

Command line argument is a value that is passed to a program whenever the program is executed. It is used to avoid hard coding.


What argument is most accepted by command economies?

Fair


What command would you issue from a command prompt to see a listing of the computers in your workgroup?

"net view" is the command and argument, with "net" being the command and "view" being the argument to view computers within your network, domain, or workgroup. As always, type it without the quotations.


What specifies the parameters that tailor a command to your particular needs?

argument


What to do when you have a bad argument?

I want to answer the question of linux command , what is the meaning of the tip " bad argument "peg" " in linux system ?


What Linux command sets a files permission?

In Linux the chmod command is used to set file permissions.


Instruction that causes a program to perform a specific action?

Command


How you can got the first character of an argument in command line argument in java?

in your code u always write public static void main(String args[]) { //here array args will hold the command line arguments. Indexing from zero for //first argument //with substring(args[0],1) u can get 1st char of first argument. }


What is the length command line argument in character?

Use the function strlen(string);


Where do you find the netsh command menu on windows 2008 server?

'netsh' is a CLI command. It doesn't really have a 'menu'. You can have it list its options by using the /? argument to the command, such as 'netsh /?'


Please someone explain you command line argument in C?

Command Line Arguments---- I am trying to explain each word one by oneCommand ------perform specific taskex. When CMD is typed in run window and then press ok button then open a black screen that is called command prompt.Command Line ------on command prompt where command is supplied that is called command line.using command prompt dos commands are executed and java program is also executed using command prompt.for executing java program command is supplied with given syntaxjava java_class_name argument1 argument2.........Java--- is a commandjava_class_name ---name of java file which you want to executeargument1 argument2 --- are the values passing to java application from out sidethese argument1 argument2 are stored in string array argument of main method