.bashrc question re: rm -i & ls --colors


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers .bashrc question re: rm -i & ls --colors
# 15  
Old 04-21-2008
As I mentioned i my original post

"My colors only work if referenced to /usr/local/bin/ls --color" (in my bashrc file. alias ls='/usr/local/bin/ls --color=auto' ... if I use /usr/bin/ls or ls --color, or any other ls, I do not get colors)

--- which is fine --- i just wanted to know (since it is pointing to /usr/local/bin/ls)

"Can I modify the color scheme? So that it only affects me, not everyone else?"

For example -- I want to change the light green to a darker green ...

Last edited by kthatch; 04-21-2008 at 05:10 PM..
# 16  
Old 04-21-2008
Quote:
Originally Posted by era
The ls manual page mentions a variable LS_COLORS which you can set or modify in your own .bashrc. It won't affect anybody else; everybody have their own .bashrc. GNU file utilities has detailed documentation (for some version of GNU ls). It seems the regular documentation is what dircolors -p prints, and the manual doesn't explain it in too much detail.
Try dircolors -p and see what you can make of it.

COLORS Lscolors - Linux StepByStep has some more information.

Last edited by era; 04-21-2008 at 05:23 PM.. Reason: Link to COLORS page
# 17  
Old 04-21-2008
--- Thanks!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Remoting sudo commands & bypassing bashrc

What I want to do is not unique, except that our environment has a twist. I want to ssh to a remote server and issue a sudo command to run a script. This isn't working, but you'll get the gist.# ssh remotehost sudo -i -u oracle script.bashThe sudo to oracle is fine. The script.bash sets up the... (4 Replies)
Discussion started by: JustaDude
4 Replies

2. Shell Programming and Scripting

awk Help: quick and easy question may be: How to use &&

Hi Guru's. I am trying to use to check if $5 is greater than 80 & if not 100, then to print $0 : awk '{ if ($5>80) && if ($5 != 100) print $0} But getting error: >bdf1|sed 's/%//g'|awk '{ if ($5>80) && if ($5 != 100) print $0}' syntax error The source line is 1. The error... (6 Replies)
Discussion started by: rveri
6 Replies

3. Programming

Quick question about '_&'

I've seen in other programmers code the use of '_&' as a line separator. I am trying to find in my C++ reference manual some pages dedicated to an explanation of the use of this '_&' but I don't know what it is called. I only know it is a "line separator" or "line break" of some sort which is... (0 Replies)
Discussion started by: sepoto
0 Replies

4. Shell Programming and Scripting

perl newbie . &&..programming newbie (question 2)

Hello everyone, I am having to do a lot of perl scripting these days and I am learning a lot. I have this problem I want to move files from a folder and all its sub folders to one parent folder, they are all .gz files.. there is folder1\folder2\*.gz and there are about 50 folders... (1 Reply)
Discussion started by: xytiz
1 Replies

5. UNIX for Dummies Questions & Answers

Question on x-window & which Linux to go with

Hi, Currently in my company, we are using Windows 2003 server and Exceed. Team from India can connect to the Windows 2003 server and start Exceed to run their UNIX application. The application is GUI based. As you know, Windows 2003 only allows two connection at any time. so I want to... (3 Replies)
Discussion started by: samnyc
3 Replies

6. UNIX for Dummies Questions & Answers

.bashrc question

Hi, I was instructed to find all the .bashrc files on my system, that MODIFY the PS1 varaible. here is what i've come up with so far: ls / .bashrc -print woo. But thats not all. I need to display the full file name ( Including the full path ) and protection. - I can display... (4 Replies)
Discussion started by: oxoxo
4 Replies

7. Shell Programming and Scripting

creating & sending formatted (with bolds & colors) CSV

Hi , I have a situation. Need is to create & send a formatted file with header in BOLD & colored & some sequel results as a content. I know echo -e \033 command, but its scope is limited in PUTTY. How to retain the formatting out of Putty; say after someone opens a email attachment... (2 Replies)
Discussion started by: infaWorld
2 Replies

8. Linux

xterm font colors - configuration question?

When I telnet (ssh) over to my Fedora system, I find the colors horrible. For instance, regular files are white text, which is fine, but directories show up as dark blue which is virtually invisible against the black background). Additionally, when using vi, I find the colors great doing perl... (3 Replies)
Discussion started by: ripley
3 Replies

9. UNIX for Dummies Questions & Answers

dirs & colors

hi @all question from an absolute beginner: I want directory listings to be displayed with different colors... what do I have to do and where can I find the settings? thx (4 Replies)
Discussion started by: tk876
4 Replies

10. UNIX for Dummies Questions & Answers

And(&&) Question

Hi, for example in this script I want both of these files to be listed with my "ls" command but it won't work, is there a way to do it like this I've tried &, ||, |, etc. This seems so simple but I can't figure it out. I thought with "&&" it would work but I was wrong! #!/usr/ksh touch... (7 Replies)
Discussion started by: Astudent
7 Replies
Login or Register to Ask a Question