Linux / UNIX List User Dot-Files

by Vivek Gite on August 26, 2009 · 5 comments

How do I list only user dot-files from $HOME under UNIX and Linux operating systems? How do I ensure that user Dot-Files are not World-writable?

Use the ls command and shell GLOB characters to list only user Dot-Files, enter:

ls -ld /root/.[A-Za-z0-9]*
ls -ld $HOME/.[A-Za-z0-9]*

Sample Outputs:

-rw-r--r--  2 root  wheel  1455 Jun 12 18:47 /root/.cshrc
-rw-------  1 root  wheel  2650 Jul 28 06:26 /root/.history
-rw-r--r--  1 root  wheel   299 Jun 12 18:40 /root/.login
-rw-------  1 root  wheel    57 Jun 12 22:07 /root/.mysql_history
-rw-r--r--  2 root  wheel   260 Jun 12 18:40 /root/.profile

Run chmod command on misconfigured file to remove group- or world-writable permissions, enter:

# chmod go-w $HOME/.dot-file-name

Owners can run the same command to fix permission issue.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 5 comments… read them below or add one }

1 Alexei August 26, 2009

Why not just this command?

ls -ld \.* 

And this?

find ~ -name \.\* -exec chmod go-w {} \;

Reply

2 Vivek Gite August 26, 2009

@ Alexei,

Nice. I almost forgot about find, pipes and xargs :(

Reply

3 oll August 26, 2009

find ~ -name \.\* -exec chmod go-w {} \;
Since I don’t know any dot file or dot directory that contains less than 2 letters, what I do is :
chmod -R go-w ~/.??*
But in a script, Alexei find’s syntax is smarter indeed.

Reply

4 Juan Giordana September 1, 2009

find $HOME -maxdepth 1 -iname '.*'
find ~ -maxdepth 1 -iname '.*'

Reply

5 BOUAZIZ MOURAD September 28, 2009

HELLO;I WANT SOME HELPE ABOUT THE SOLARIS COMMANDS

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 3 + 3 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: