0
votes
1answer
10 views
second previous command execution
hello
in unix command line !! will execute th eprevious command on the command line like below
indibm202 21: date
Tue Nov 10 17:38:13 IST 2009
indibm202 22: !!
date
Tue Nov 10 17: …
1
vote
5answers
120 views
How do I launch an editor from a shell script?
I would like my tcsh script to launch an editor (e.g., vi, emacs):
#!/bin/tcsh
vi my_file
This starts up vi with my_file but first displays a warning "Vim: Warning: Output is no …
0
votes
0answers
68 views
what does tail + number does? What about head [closed]
I just called this command ls -l | tail +3. Firstly, ls -s, produces 3 lines, adding piping strips first line and then prints each file names on a separate line. How does it do th …
0
votes
0answers
59 views
history file grows indefinitely [closed]
I believe I get the same problem as this guy. I'm on AIX, with tcsh 6.12.00
After (probably) a bad logout, the history file exponentially grown, until the quota stopped it (and wh …
0
votes
2answers
89 views
How to use for loops in command prompt in csh shell — looking for decent one liners
coming from bash shell, I missed on an easy rolling of loops (for i in (...); do ... done;)
Would you post typical one-liners of loops in cshell?
ONE LINERS PLEASE, and not multi …
0
votes
2answers
34 views
csh list of commands like ksh { list; }
Hi,
In bourne-compatible shells, the { list; } syntax causes the complete list of commands to be read by the shell before executing it, without opening a new shell. Is there anyth …
3
votes
2answers
126 views
Tcsh and/or bash directory completion with variable hidden root prefix
I'm trying to set up directory completion in tcsh and/or bash (both are used at my site) with a slight twist: for a particular command "foo", I'd like to have completion use a cust …
0
votes
3answers
134 views
Display only files and folders that are symbolic links in tcsh or bash
Basically I want do the following:
ls -l[+someflags] (or by some other means) that will only display files that are symbolic links
so the output would look
-rw-r--r-- 1 userna …
0
votes
1answer
19 views
Shared Libraries in Same Folder with App in TCSH
Hi,
I am deploying a locally-compiled app to a remote Linux server. Since I don't have root account I cannot put needed shared libraries to /usr/lib
Is there a way to overcome this …
0
votes
1answer
24 views
what are good resources to get the most out of csh or tsch?
I would like to get the most out of working in cch or tcsh shell.
I am looking for general tips (post them away), online tips, or book.
Thanks
1
vote
1answer
75 views
Ctrl-R to search backwards for shell commands in csh
I love this shortcut in borne shell, and want to find out if it is possible to simulate and/or have (perhaps to install an add-on or with a script) it in csh or tsch
thanks
0
votes
5answers
108 views
How do I check for the existence of a file using a wildcard in Bourne shell?
What I'm looking for is something like:
if [ -f "filenam*" ]; then
...
fi
But the wildcard (*) causes problems.
I've also tried:
if [ `ls filenam* > /dev/null 2>&am …
0
votes
6answers
391 views
Best resource for learning tcsh?
Hello everyone,
The question is pretty self-explanatory... I am looking for websites or documentation that will teach the basics of tcsh shell programming.
Thank you
0
votes
1answer
101 views
How can I bindkey ctrl-left to word-left?
I use tcsh and emacs. In emacs, I'm used to the ctrl-left bindkey moving me left by a word. I'd like to do the same thing in my tcsh terminal.
I can do ctrl-b, but I'm just not us …
0
votes
4answers
183 views
how can I strip the filename from a path in tcsh?
Given this variable in tcsh:
set i = ~/foo/bar.c
how can I get just the directory part of $i?
~/foo
