How to recognize the Shell?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to recognize the Shell?
# 1  
Old 11-21-2013
How to recognize the Shell?

Hello All

I am working on Red Hat Enterprise Linux Server release 5.1 when I logged on to the shell and then write echo $SHELL it shows me the result /bin/bash
and when I write csh, the prompt changes and I feel that I am now working upon C shell but when I do echo $SHELL it shows me the result /bin/bash, but it should be the output something like /bin/csh why does it still showing me the echo /bin/bash

Thanks
ADI
# 2  
Old 11-21-2013
Try echo $0
# 3  
Old 11-21-2013
This code may help.
env | awk '/SHELL/ {print $0}'


Thanks,
R. Singh
# 4  
Old 11-21-2013
But my question is why not it shows the correct shell name when I write echo $SHELL
# 5  
Old 11-21-2013
SHELL is set by login(1), not by the shell, so it doesn't change when you change shells.
This User Gave Thanks to Scott For This Post:
# 6  
Old 11-21-2013
Hi,

Add this to .cshrc
Code:
cat .cshrc
setenv SHELL /bin/csh

# 7  
Old 11-21-2013
I am not able to find the path where .cshrc file is located.

ADI
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Pipe not recognize with gawk

Hi ! I am a newbie with Unix and I try to remove the "|" FS in this file: 1|2|3|4|5|6 to get: 123456 by using: gawk 'BEGIN{FS=""} {gsub("|","",$0); print $0}' file but nothing changes. Or even when I try to change "|" by "%"with this command: gawk 'BEGIN{FS=""} {gsub("|","%",$0)... (3 Replies)
Discussion started by: beca123456
3 Replies

2. Shell Programming and Scripting

How does a shell script recognize the end of a line?

Hi friends , I want to know how does a shell script recognize the end of a line? . i have hunddres of proccedure to test where i want to ingnore the comments which starts with "--" .. it can start from the middle of the lines also. for example:: select * from table1; -- getting... (5 Replies)
Discussion started by: neelmani
5 Replies

3. Shell Programming and Scripting

Do you recognize this data structure?

I am working with an undocumented feature of a software product (BladeLogic). It is returning the below string in response to a query. It is enclosed with square brackets, "records" are separated with commas and "fields" separated with semicolons. My thought was that this might be some basic... (1 Reply)
Discussion started by: dshcs
1 Replies

4. Debian

CUPS Cannot recognize lp0

I am trying to print from Debian and receive the following message: "Unable to open device file"/dev/lp0": Permission Denied" The permissions for lp0 are 666. Advice and comments, please. :wall: Thanks (0 Replies)
Discussion started by: woofy613
0 Replies

5. UNIX for Advanced & Expert Users

recognize servers environment

Basically do you have any suggestions on how to advise syadmins to be more careful in accessing servers so that they would know at an instance that the server they logging in is production or not(perhaps naming convention etc, color terminal? We have recent incident of wrong restoration to a... (2 Replies)
Discussion started by: lhareigh890
2 Replies

6. Solaris

Solaris recognize HW Raid ??

Hardware: HP P2000 HP DL380 G7 with Solaris Software: Solaris 10 05/08 I had made a Hardware raid on P2000 and install solaris on G7, The raid card controller is working fine. How can I make the raid works on OS?? "raidclt" is getting nothing :wall::wall: Thanks (11 Replies)
Discussion started by: stanley1024
11 Replies

7. UNIX for Dummies Questions & Answers

Re: How do I recognize a zombie process?

Hey Guys, I am not really new to Unix/Linux however I was never taught how to spot a zombie process. I used top to check out the processes I was running and how the resources were looking and in the upper right it said 1 zombie, I have attached a jpeg of it. Thank you in advance for your... (4 Replies)
Discussion started by: pikecoguy
4 Replies

8. Programming

How to recognize that the server is currently unavailable?

hi all How to recognize that the server is currently unavailable? by programatically.give some example. am using fedora5 AMD cheers (2 Replies)
Discussion started by: munna_dude
2 Replies

9. Shell Programming and Scripting

shell script cant recognize if else compare

hi I face the problem the if else statement dint return correct result for me my script as below: #!/bin/ksh sqlplus -s /nolog <<EOF connect databaseuser/password column num new_value num format 9999 set head off select count(*) num from table1; exit num EOF if ; then echo "$?"... (6 Replies)
Discussion started by: jaseloh
6 Replies

10. Shell Programming and Scripting

Doesn't recognize the mv command

I'm nearly finished my program i've got everything in place and than when i run it it comes back with the reply mv: command not found. This is the code that seems to be causing the problem. elif then echo "There are more than one '$1' files in the system." echo "Please... (2 Replies)
Discussion started by: zoolz
2 Replies
Login or Register to Ask a Question