10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Hi!
I need to translate those line in csh (to initialise variable) into ksh construct.
Any help would be appreciated! I don't know how to replace them :(
Thanks
Hulu
setenv TestHul "$0 $*"
setenv JG `setenvp "JG" "" "$*"`
setenv A_1 `setenvp "A_1" "NA" "$*"`
Please use next time... (2 Replies)
Discussion started by: patator67
2 Replies
2. Shell Programming and Scripting
In csh I am using >&. What is the equivalent in ksh??
>& - redirect stdout and stderr (csh,tcsh) (18 Replies)
Discussion started by: kristinu
18 Replies
3. Shell Programming and Scripting
Dear All,
Normally, I use ksh to code script but I got a new assignment to check the error code of csh so I want to know csh has fuction -x(/bin/ksh -x) as ksh or not?
If csh has, which mode? Another way, how can I check it my code is correctly?
Thank in advance (2 Replies)
Discussion started by: unitipon
2 Replies
4. Shell Programming and Scripting
hi, I have a csh script, which has
setenv X xyz etc
My shell is korn
Is there some way I can "source" this to have the variables in my current korn shell?
thanks (3 Replies)
Discussion started by: JamesByars
3 Replies
5. Shell Programming and Scripting
Dear friends...
Kindly if any one can help me to know the differences in definning & retreiving data from arrays in the sh,csh & ksh.
I always facing problems in this issue.
thanks...:)
BR (3 Replies)
Discussion started by: ahmad.diab
3 Replies
6. Shell Programming and Scripting
I'm comfortable with csh. However, i need to run a ksh script.Using exec /bin/ksh -i , I'm able to invoke ksh, but the script is not running any further. Variable QDDTS is an env setting on my csh env.
The ksh script goes like this -
#!/bin/csh
exec /usr/local/bin/ksh -i
function... (3 Replies)
Discussion started by: m_shamik
3 Replies
7. Shell Programming and Scripting
Hi -
I m prashant. I m new in UNIX&LINUX world. I want to ask that how can we define the shell in Linux like bash,ksh,csh in Linux. What is the use of these shells. I know there are mny experts on net if you can tell me then please do me this favour and tell me about this topic.
... (1 Reply)
Discussion started by: prashantsingh
1 Replies
8. Shell Programming and Scripting
Having been a long-time csh person I now need to convert a lot of stuff to run under ksh. Can anyone tell me how to do a ksh equivalent of the csh history substitution !* that can be used in an alias, ie how would I do:
alias cd "cd \!*; pwd"
alias find "find . -name... (2 Replies)
Discussion started by: jonnywilkins
2 Replies
9. Shell Programming and Scripting
Hey guys,
Hopefully a simple question for you.
In csh I have an alias that looks like:
alias ff 'find . -name \!* -print'
and can therefore perform a search for a file by typing:
ff filename
The same comand does not work in ksh
alias ff="find . -name \!* -print"
I get:
find:... (3 Replies)
Discussion started by: timsk
3 Replies
10. UNIX for Dummies Questions & Answers
My UNIX SA requires that we start in CSH. I like to use KSH because most of my experience is in that shell. I added ksh to the end of my .login script which does take me into KSH but I would like to automatically execute my .profile to setup my aliases.
I cannot use a .shell file because I... (1 Reply)
Discussion started by: veeracer
1 Replies