Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
46 views

How to write a setevn/export script that will work in both csh and bash?

In my environment (RHEL) I have a bunch of script that are written in either csh or bash. Some of them are used to deal with a tomcat server. I want to keep the definitions of CATALINA_HOME and ...
3
votes
3answers
140 views

How to run a process and completely detach it of its parent shell [closed]

Possible Duplicate: Leave bash script running on remote terminal while not logged in? How do I detach a process from Terminal, entirely? I'm running a program on a linux server that will ...
0
votes
2answers
49 views

“Command not found” error when running program

I'm trying to run a program, and keep encountering a "Command not found" error. I've checked that the appropriate directory is in $PATH, and that the file itself has execute permissions. I've tried ...
0
votes
1answer
125 views

Why do I get a different behavior of the scp command in csh and bash?

Why do I get a different behavior of the scp command in csh and bash? Same command is working in csh shell, but it not working in bash shell. Please can anybody help? bash-3.2$ csh Linux-007% ...
0
votes
0answers
83 views

Converting csh or tsh scripts to Bash

I am looking for a tool that can convert scripts written in csh or tcsh to a bash scripts. At least on the basic stuff so that I don't have to go through the process of translating everything from ...
0
votes
2answers
45 views

csh script to return number of process running

I want to set the number of a particular process that are running to a variable. The first line of the csh script below is the problem as it sets the variable "number" as ps aux | grep -c fiji ...
0
votes
0answers
54 views

Sorting a list of directories that contain numbers with a different number of digits [closed]

Possible Duplicate: In bash, how to sort strings with numbers in them? We have the following directory structure on our file-system: ver30 ver20 ver50 ver70 ver100 ver90 I want to create ...
2
votes
1answer
44 views

csh: how to test for blank correctly?

I want to test if a variable is totally empty in csh. set R='dddd aaa' if ( '${R}' ) then echo not empty else echo 1111 endif However it apparently does not work. It gives this error ...
0
votes
1answer
28 views

Please explain the behaviour of the shell (supposed to be csh)

On my Linux box, echo $SHELL results in /bin/csh. So I assume my default shell is c-shell. I am trying to understand the behavior of a shell script. scenario 1 - script contains - echo $1 $2 $3 echo ...
1
vote
1answer
37 views

How do I background a job quietly?

Using csh, how do I put a job in the background without generating any output? [prompt] job & [1] 5103 I want to eliminate the line [1] 5103
1
vote
1answer
109 views

find on command line reports back illegal time value

I want to run the following command: find . -mtime -60s When I do I get this output instead: CLIENT% echo `date +%s`-1308741881 | bc 5152 CLIENT% find . -mtime -`echo `date +%s`-1308741881 | bc`s ...
0
votes
1answer
168 views

csh cd alias: how to eliminate error when no parameter is supplied

I am familiar with bash, but my works require csh. in my .cshrc, I created this alias: alias cd 'cd \!:1; ls -l' It works very well except for one case: when I cd without any parameter: cd In ...
1
vote
2answers
135 views

What are the options to make csh behave more Windows-like?

I'm using csh via PuTTY from a Windows PC and since I'm used to having the HOME button just place the cursor at the beginning of the string (instead of inserting ~) or ctrl+arrow place the cursor at ...
2
votes
2answers
130 views

find files within a specific directory structure but a variable parent directory structure

I want to use the find command in linux to find a specific file nested within a specific directory structure, say dir1/dir2/reqdfile. But this directory structure can itself be nested within any ...
2
votes
2answers
325 views

How do I add a location to my path in Unix?

I am new to Unix. I got a question. Suppose I have a command can run like this /sbin/abc but cannot run abc. How can I set certain path or something that make abc can run everywhere? I am using a ...
2
votes
1answer
245 views

How to set PATH to run programs outside of default path?

I'm working on a project on my school's linux servers. I have a program deep in a directory, we'll say it's ...
0
votes
2answers
413 views

How to open xterm shells with background colors based on topographic positioning?

I currently use an alias in csh/tcsh to open shells with specific window colors. Example: xterm -geometry 105x25 -font 8x13 -bc -bg #333 -fg #999 \!* & What I'd like to do is have one command ...
0
votes
3answers
247 views

run tcsh but bash started instead

I tried to start a tcsh on my Fedora 7 (default shell is bash) [ss@ssvm ~]$ tcsh [ss@ssvm ~]$ echo $SHELL /bin/bash As you see, another bash shell started. I looked at the tcsh file: [ss@ssvm ~]$ ...
0
votes
1answer
92 views

how to set up new keybinding for finding last command executed using the first few characters of the command in csh

I want to be able to use Ctrl+R to have reverse-i search. Also if I press Shift+Up Arrow after typing the first few characters of a recently executed command then the shell should complete the command ...
1
vote
2answers
280 views

How to start tab suggestions in csh?

In a different distro of linux I had bash tab suggestions enabled. Now I am using Konsole with csh on my pc. how do we enable tab completion in csh? By tab suggestions I mean that if I type ...
1
vote
5answers
381 views

linux text editor for windows

can somebody recommend a good Linux text editor for Windows (if it exists), I wrote scripts for C-Shell using txt editor of windows but I have problem, it doesn't run because windows is not UNIX, what ...
0
votes
1answer
157 views

tcsh `cd` always issues a printout of `$PWD`. How do I disable this?

Someone in IT thought it would be a good idea to modify the default behavior of the command cd in our tcsh environment. As of Monday the "upgraded" version of cd always prints out $PWD after it ...
0
votes
1answer
476 views

getting error while doing cat command “Ambiguous output redirect.”

while executing cat test.txt | java myfile > test1.txt 2> test2.txt I am getting error "Ambiguous output redirect." my java file contains System.out and System.err . I am in Unix csh ...
3
votes
6answers
419 views

How do I set $ variables in unix?

For example there is a long path that I cd to very often. How do I store the path in a variable so that I can use it everytime? For example: I wan to be able to do this cd $path instead of cd ...
2
votes
4answers
2k views

Is there a way to escape single-quotes in the shell?

E. g. I want to say perl -e 'print '"'"'Hello, world!'"'"', "\n";' Is there a less awkward way to do it, e. g. escaping single-quotes? Yes, I know that I can write perl -e 'print q[Hello, ...