tcsh help


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting tcsh help
# 1  
Old 11-28-2011
tcsh help

Does anyone no way my .tcsh_history file is filling up with a bunch of crap?? It is filled with lines like:
Code:
! ls eccracrascratcd ! ls mecd /hchoo "cratch2/mecd /sch2/mecd /sh2/mecd /scratchcd /scratch2/mecd /scratcraecd /ls mo "ls" >
  ! ls eccratch2/mecd /sc/ls"d /scratch2/mecd histecho "ls" o "ls" > ! ls mecd /sc/ls" >
  ! ls histecho cd /sc/ls" > ! ls hch"ltecho "ls"mecls" > ! ls mecd /hcrats mecd /hcratch2/mecd /lsecho hchcd /scratcls e cd /hcratch2/
.
.
.

Could it have something to do with having the .tcsh_history (~/.tcsh_history) file on the server and sharing it to all the client nodes (NFS)?

I also can't get password-less ssh working

Smilie

OS: FC14

Last edited by Scott; 11-28-2011 at 04:40 PM.. Reason: Added code tags, some newlines to code
# 2  
Old 11-28-2011
if you have root_access
* check `last|tac` and `who -a|tac` for possibility foreign logins
* if you see any foreign IP then configure sshd_config with AllowUsers (user@IP)
* change your password(to more complex) and kill foreign ssh sess and regenarete ssh pub/priv keypairs.
* clear history file and re-login with new passwd
if no
* try change your password(to more complex) and regenarete pub/priv key.
* check the last modifed times of your files(like historyf) and compare your times?
* clear history file and re-login with new passwd

regards
ygemici
# 3  
Old 11-28-2011
I checked both `last|tac` and `who -a|tac` and everthing looks good. I cleared my history and everything seemed to work for sometime, but after logging off and on a couple times i started seeing things like this in way history:
Code:
cat .tcsh_historyc#+1322511480
2251#+1322512100
cat .tcsh_hcat .tcsh_history
cd ssh-keygen -t dsa -f .ss#+1322511#+#+1322511560
keygen -t dsa -f ~/.ss#+1322511#+1keygen -t dsa -f ~/.ss#+1322511#+1keygen -t dsa -fcat .tcsh_histossh-keygen -t cd mef

I also changed my password.

Last edited by Bic121; 11-28-2011 at 05:43 PM.. Reason: Code tags
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Tcsh to sh

Dear all, I have piece of command from tcsh, which I would like to be in my .bashrc file. However, I am comletely blank about the tcsh commandline. if (-e ~/forum/dir/code.sh) then source ~/forum/dir/code.sh endif Any piece of suggestions how to convert it to sh way? Thank you emily (5 Replies)
Discussion started by: emily
5 Replies

2. Shell Programming and Scripting

Help in tcsh script

Hi All, I wrote a tcsh script, but being a beginner it took me lots of efforts and on top of that I am still struggling with little modifications here and there. kindly have a loop. Line1 : I want it to run maximum of "Max" Which I am providing outside loop. So how the "for" should be... (10 Replies)
Discussion started by: nrjrasaxena
10 Replies

3. Shell Programming and Scripting

tcsh problem

Hi, I'm having a problem getting my terminal history working, I have the following set in my .cshrc file: set history=40 set savehist=40 set histfile=~/.tcsh_history but NO information is being wrote to tcsh_history??? Info: OS - FC14 -rw------- tcsh_history Shell:... (0 Replies)
Discussion started by: Bic121
0 Replies

4. Shell Programming and Scripting

Decimals in TCSH

Hello, I want to run a loop with non-integer values (which I know I can't) so I've created a loop of integers and divided it by 10. However, these values are always rounded down to 1 significant figure. How do I get the script to keep and use the decimal value? My script is as follows #... (1 Reply)
Discussion started by: DFr0st
1 Replies

5. UNIX for Dummies Questions & Answers

About tcsh shell

Hello, Why tcsh shell is not recommended ? then which one is better ? Also can you please let me know how to change own shell and config file? (3 Replies)
Discussion started by: darshakraut
3 Replies

6. UNIX for Dummies Questions & Answers

help in tcsh

am working in tcsh while writing a script, what is diff between foll two starting line #!/bin/csh #!/bin/csh -f Also can I use the same line for script in tcsh or I have to necessarily use #!/bin/tcsh I guess even #!/bin/sh will also do. Kindly clarify (3 Replies)
Discussion started by: mahendrakamath
3 Replies

7. Shell Programming and Scripting

Help me with this tcsh script.!!!!

I need to write a tcsh script which would compare files in the two folders and then send me a mail saying which of the files are missing.For eg 1) I have this folder1 containing all the files which must land on folder2 on a daily basis. 2) If a file is present in folder1 but not in... (6 Replies)
Discussion started by: kumarsaravana_s
6 Replies

8. Shell Programming and Scripting

tcsh

I'm working on OpenOffice Localization; In that I need to work most of in 'tcsh' Since I have almost work till now in 'bash', I want to explore 'tcsh' much more .. An body suggest me a way ? books ? Thanks, :) (1 Reply)
Discussion started by: kartik
1 Replies

9. UNIX for Dummies Questions & Answers

tcsh and redirect

Hello, maybe it is a silly question, but can somebody tell me how to do a redirect of errors in the t shell? Unix Newbie :) (1 Reply)
Discussion started by: Micky
1 Replies
Login or Register to Ask a Question