Remove Permission Help needed.


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Remove Permission Help needed.
# 1  
Old 11-29-2010
Remove Permission Help needed.

How would i remove rwx permission for group and other users for all hidden files (except . and ..) inside /root using a one line command.

I have tried below command.
Code:
# chmod og-rwx /root/.*

but this has removed rwx permission for . and .. files .

As a result
Code:
# ls -ld /root
drwx------ 3 root root 4096 Nov 26 14:03 /root

This is what i want to achieve in one line command.
# 2  
Old 11-29-2010
Code:
cd /root; ls -A | xargs chmod og-rwx

# 3  
Old 11-29-2010
Quote:
Originally Posted by ilikecows
Code:
cd /root; ls -A | xargs chmod og-rwx

I have requested to change attribute of only hidden file your script is changing attribute for normal file as well.
However i have leaned new thing.
I guess you need to list only hidden files instead of ls -A as it displays hidden as well as normal files without . and ...
# 4  
Old 11-29-2010
Good catch

Code:
cd /root; ls -A | grep '^\.' | xargs chmod og-rwx

This User Gave Thanks to ilikecows For This Post:
# 5  
Old 11-29-2010
Usually this is sufficient:
Code:
chmod og-rwx .??*

This User Gave Thanks to Scrutinizer For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[Solved] Permission problem, programming advice needed, Perl

Hi all, I have written a wrapper script in Perl which will be used on AIX, Linux and Windows and I do not want to change any code for the needs for a specific OS if avoidable. It works fine so far on all 3 OSes, not blowing up any stacks any more, but I am unsure how to handle writing log files... (7 Replies)
Discussion started by: zaxxon
7 Replies

2. UNIX for Dummies Questions & Answers

help needed: remove space between certain columns

dear all, i have a data looks like this (i have 3000 columns): rs123 A T T G C C C C C C A A A A A A A A A A A ... rs154 T T G C C C C C A A A A A A A A A A T T G ... rs126 A C C C C C A A A A A A A A A A A A T T G ... I want to remove all the space after the 2nd column and make the... (2 Replies)
Discussion started by: forevertl
2 Replies

3. Shell Programming and Scripting

shell command to remove some XML tag is needed

Hi all, I have a file which i have to remove some line from it, the lines that i have to remove from my file is as below: </new_name></w"s" langue="Fr-fr" version="1.0" encoding="UTF-8" ?> <New_name> and it is finding at the middle of my file, is there any command line in linux to do it or do... (10 Replies)
Discussion started by: id_2pc
10 Replies

4. UNIX for Dummies Questions & Answers

Need to remove Group write permission .

How would i write a command that can find all the objects under the etc directory that have group write permission enabled and have not been accessed in the last X days. This is what i got from internet souce but i m not able to modify it according to my distribution. find /etc -perm... (1 Reply)
Discussion started by: pinga123
1 Replies

5. Shell Programming and Scripting

Help needed to remove a char from a specified sub-string

Hi! I'm having trouble usind sed to remove the char ' from within a database's varchar register's sql. For example, on the following sql: INSERT INTO patrimonio_municipal.patrimonio_municipal_airc_tmp Values('|Estação Elevatória|',|16723|,'|Grandes Reparações|', '|2010-03-26... (3 Replies)
Discussion started by: cremat0rio
3 Replies

6. Shell Programming and Scripting

please help me how to script atomatic remove file that are not needed

Im new to this forum and also Unix. I need help to solve this Directory Clean-up. Im not sure how to do but i wish someone could help me out. I have to develop a script that can be used to automatically remove files that are not needed. The final script will be developed in two iterations. The... (1 Reply)
Discussion started by: sunilnbalar
1 Replies

7. UNIX for Dummies Questions & Answers

rm: cannot remove `test1.txt': Permission denied

This issue is on RedHat 4AS, and I am pretty sure this is a very basic permission issue. I need to give permission for everyone to move/delete the file that is created by me. How do i do that? Here are the commands I issued: $ id uid=680(praveen) gid=1003(nextgen) groups=1003(nextgen)... (2 Replies)
Discussion started by: praveen_indramo
2 Replies

8. UNIX for Dummies Questions & Answers

FIND and REMOVE HELP NEEDED!!!

Hello, I am aware of that Find command finds certain files and remove command removes certain files. However, is there a way to Find certain DIRECTORY and remove that DIRECTORY? thank you (3 Replies)
Discussion started by: scooter17
3 Replies

9. UNIX for Dummies Questions & Answers

Find and Remove help needed!!!!

thank you for the help. (1 Reply)
Discussion started by: scooter17
1 Replies

10. Shell Programming and Scripting

Remove a File - Help Needed

Hi, I have created a file "-f.txt" or "-f" and now i want to remove this file, I have tried rm -f -f, but you would have understood the problem i am facing. Now please let me know what needs to be done, Also one more question i want to know the difference between Hard Link and Soft Link and... (3 Replies)
Discussion started by: amitkhiare
3 Replies
Login or Register to Ask a Question