tcsh is an enhanced but completely compatible version of the Berkeley UNIX C shell, csh.

learn more… | top users | synonyms

0
votes
1answer
17 views

How to suppress whitespace from inputs in tcsh?

In tcsh I'm trying to make an alias like alias getit "mv /somedir/$* ." If I then do getit foo.txt tcsh tries to execute mv /somedir/ foo.txt i.e. it inserts an unwanted whitespace and ...
0
votes
1answer
36 views

Determine command status in C shell

I wrote my c shell script which need to determine the command status. In the below program line 4 command was not successful. But I got status still 0. I do not understand why. As per my ...
3
votes
2answers
37 views

Substitution of ! with sed leads to event not found

I need to change every occurrence of ! to : as field separators in a group file. sed 's/!/:/g' filename > newfilename But I get the error /: Event not found?
0
votes
0answers
20 views

How to load a building environment from file on Eclipse

I work on various Fortran projects using Eclipse (Juno Service Release 1) and Photran, under Debian 5. These projects are built by the following commands: csh /* We work on ...
0
votes
2answers
56 views

Redirecting standard error to file and leaving standard output to screen when launching makefile

I am aware that for redirecting standard error and output to file I have to do: make > & ! output.txt Note I use ! to overwrite the file. But How can I redirect standard error to file and ...
0
votes
2answers
36 views

Use makefile variables inside tcsh

I created a tcsh script, which I want to call through a Makefile environment. Therefore I want to reference variables inside this tcsh script, which I have defined in the Makefile environment. I tried ...
-1
votes
2answers
87 views

Passing arguments to “executable” parameter of the subprocess.Popen() call

The subprocess.Popen() lets you pass the shell of your choice via the "executable" parameter. I have chosen to pass "/bin/tcsh", and I do not want the tcsh to read my ~/.cshrc. The tcsh manual says ...
0
votes
2answers
53 views

Why does system call affect subsequent print behaviour in perl?

Here's my code #!/usr/bin/perl use strict; use warnings; use diagnostics; my $file = $ARGV[0]; system('wc -l $file'); print "\nprinting alpha \n"; sleep 1; exit; After I run (in tcsh shell) perl ...
0
votes
1answer
68 views

Quoting a string for csh

For the purposes of this question, by "csh", I mean tcsh. I am aware of the standard advice to avoid csh for programming. However, sometimes ones needs to interact with existing csh code, and then it ...
0
votes
2answers
75 views

What is tcsh equivalent of bash $'\t'

I'm trying to use column -t -s $'\t' in tcsh (which works in bash) but I can't find a way to make it work echo "selected version\tnew version\nbbb\tccc\n" | column -t -s $'\t' Illegal variable name ...
0
votes
1answer
84 views

How to find subdirectory of some directory, which have most files

I have already done it using bash, but how can i get name or path to this subdirectory using tcsh. Later i need to count total size of all files in this subdirectory, please help me. For example: ...
0
votes
2answers
58 views

Permissions when iterating over files in directory Unix TCSH scripting

I'm writing a script that will print the file names of every file in a subdirectory of my home directory. My code is: foreach file (`~/.garbage`) echo "$file" end When I try to run my script, ...
1
vote
2answers
148 views

tcsh - Command line arguments beginning with dash (-)

I need to check the first command line argument to see if it's -cleanup. My code is: if ( $* != null ) then if ( "X$argv[$n]" == "X-cleanup" ) then echo "its cleanup" I first check to make ...
0
votes
2answers
31 views

tcsh: print date 2 weeks ago in shell

In tcsh on OpenBSD, I need to print a date two weeks ago. E.g. if today is 2013-03-02, I need to have 2013-02-16 printed out.
0
votes
1answer
20 views

overall page views driven by a referrer to one page (shell)

Having a log file in the standard combined access_log format of nginx or apache, how would you, in UNIX shell, calculate the number of visits or page views (i.e. total requests) from each visitor ...
2
votes
1answer
130 views

The counterpart of python-shell's underscore variable in tcsh?

Is there any way to make tcsh keep the output of the last command in a special variable? I know I can capture the output using backticks, but if I don't use backticks in the first place, it's not ...
4
votes
2answers
228 views

minimal typing command line calculator - tcsh vs bash

I like to have a command-line calculator handy. The requirements are: Support all the basic arithmetic operators: +, -, /, *, ^ for exponentiation, plus parentheses for grouping. Require minimal ...
0
votes
1answer
32 views

TCSH command logger

Is there a way to log history(and save it in .history file) in tcsh every time a command is entered in the shell ? Something like the solution given here for bash: Bash Command Logger
0
votes
1answer
124 views

nonblocking subprocesses in python

for a wrapper around perl i need nonblocking subprocesses in python (there is shell io of various types). Additionally i am interested in shell output and return value. Sometimes the return value is 0 ...
2
votes
1answer
75 views

protect WiFi shell-scripts against shell injection (sh, tcsh)

Ever saw a WiFi base station named "| rm -rf ~ | rm -rf /? When scripting some kind of simple analysis or logging of WiFi base station data, how would one ensure that an attacker won't be able to ...
1
vote
5answers
185 views

sed: replace spaces within quotes with underscores

I have input (for example, from ifconfig run0 scan on OpenBSD) that has some fields that are separated by spaces, but some of the fields themselves contain spaces (luckily, such fields that contain ...
0
votes
1answer
31 views

sed: convert time(3) seconds in a table into printable date (spamdb)

I get the following from spamdb, where the third field represents the time in seconds since the Epoch. Cns# spamdb | fgrep TRAPPED TRAPPED|113.163.117.129|1360836903 ...
-2
votes
2answers
183 views

regular expressions in tcsh shell script

I have a shell script in tcsh to which I pass an argument, the length of which can vary. The possible values of the argument are the letters -c,s,i,q,a. and also a combination of these letters. (e.g: ...
0
votes
1answer
84 views

Getting the size of a directory in unix shell

I am a relative new comer to programming in the Unix shell environment and I had a question on how to get the size of directory. I have read that you can do commands such as; du, du -b, and so on. ...
0
votes
3answers
47 views

Difference between where and which [closed]

What is the difference between the where and which command in Unix?
1
vote
1answer
106 views

tcsh, Command not found

I have tried to run an executable 'crcor' with the command ben-Aspire-S3-391:/usr/local/src/runz% /usr/local/src/runz/crcor /usr/local/src/runz/crcor: Command not found. I have successfully run the ...
0
votes
2answers
127 views

Error converting a bash function to a csh alias

I am writing a csh alias so that I can use the following bash function in my csh : function up( ) { LIMIT=$1 P=$PWD for ((i=1; i <= LIMIT; i++)) do P=$P/.. done cd ...
0
votes
2answers
95 views

How to create tcsh aliases using python?

I am trying to created aliases for tcsh from a python script (running Python 2.7.1). Once the aliases are created I want to use them in the same shell I ran the python script in. I tried: ...
0
votes
1answer
120 views

Display current branch name in a console (tcsh)

I'm using tcsh at work (unfortunately, I can't change that fact) and I'm going crazy because I'm not able to make console display current branch name when I'm in git repo. I found this a while ago: ...
2
votes
2answers
1k views

python subprocess.call() “no such file or directory”

I've found a few questions on the module but the more common problem seems to be getting the argument list right which I think I have managed (eventually) I am trying to run a program that expects an ...
1
vote
3answers
198 views

How can one provide colour to tab completion in tcsh?

(Crossposted to unix.stackexchange.com) This question and the answer teach us how to introduce colour into tcsh prompts. This webpage explains nicely how to get colour into any output of the echo ...
0
votes
1answer
73 views

For loop in terminal

I have a script which I need to run with many input combinations. Currently I'm doing it with a perl script but I want to learn how to do it in a shell. I need to run ./script.pl a b for all ...
0
votes
1answer
107 views

set commandline shortcut in tcsh for moving cursor by word

from how to move the cursor by word in command line of tcsh I know how to move cursor by word in tcsh, but they not easy to use, so can I set a shortcut on command line for example, when I use ...
3
votes
4answers
244 views

TAB autocomplete python CLI

I was just wondering if it is possible to write a Python script that is run in the shell that can provide suggestions to the user when they hit Tab? for example, how certain applications can limit ...
0
votes
1answer
82 views

Error while running command from cron (tcsh)

When I'm running this command from shell(tcsh), it executes perfectly- cal | tail -6 | sed -e 's/^.\{3\}//' -e 's/.\{3\}$//' | tr -s '[:blank:]' '\n' | head -21 | tail -20 | tr -s '\n' ' ' | grep -w ...
1
vote
3answers
775 views

Setup Environment variable using perl

I am trying to set environment variable using Perl. It should export this variable outside (in current shell) not just in the script. I tried: `setenv X1 /p/fsd` system("setenv X1 /p/fsd") == 0 or ...
0
votes
2answers
268 views

IF statement error in tcsh

Having trouble executing an IF statement through tcsh. This works FINE for me - #!/bin/bash if echo `cal|tail -6|sed -e 's/^.\{3\}//' -e 's/.\{3\}$//' |tr -s '[:blank:]' '\n' | head -11|tail -10|tr ...
0
votes
2answers
78 views

Error running IF statement from shell

Trying to run an IF statement on two machines- 1.SunOS 5.8 Generic_Virtual sun4u sparc SUNW,Sun-Fire-V240 (bash) 2.SunOS 5.10 Generic_127112-11 i86pc i386 i86pc (tcsh) The command which I run from ...
0
votes
1answer
90 views

Subshell stdout n tcsh

In bash I get the stdout of a subshell block and assign it to a varaiable like: $ VAL="$(ls)" How can this be done in tcsh?
1
vote
0answers
254 views

cscope not working with shortcuts in .vimrc file

I am trying to add shortcuts to cscope usage by adding the following statements in .vimrc file. " cscope mappings if has("cscope") nmap <C-\>s :scs find s ...
1
vote
2answers
110 views

sed replacing content with star

I can use sed from tcsh like this: set a = `echo $a | sed -e 's_old_new_'` Everything is fine, but when I want to do this: set a = `echo $a | sed -e 's_old_*new_'` I can see "set: No match." . ...
1
vote
1answer
196 views

Translation bash to tcsh, if with pattern

I hava following code in bash: if [[ $a =~ ^[+-]?([0-9]+\.?[0-9]*|[0-9]*\.?[0-9]+)([DdEeQ][+-]?[0-9]+)?$ ]]; then How can I do this in tcsh? I tried: if ( $a =~ ...
0
votes
1answer
62 views

how to move the cursor by word in command line of tcsh

I am stucked by this for a long time. How can I move the cursor in the command line of tcsh, as did by ctrl + arrow in vim editor, ipython shell, firefox, word etc. All these above can do this nicely, ...
0
votes
1answer
354 views

execute tcsh command in bash script

In a bash script I need to execute this tcsh command. This command works fine in a tcsh command prompt but not in my bash script. eval `/app/modules/0/bin/modulecmd tcsh $variable` I have tried ...
0
votes
0answers
193 views

tcsh: eval command works in shell but not in script

Edit: seam that there were more differences between tcsh and bash than i realized, could use some help to translate to tcsh. Edit later: No, bash works fine in all lines but the line that fails (line ...
1
vote
3answers
2k views

changing default shell in linux [closed]

How it is possible to change the default shell? Currently env command says SHELL=/bin/tcsh and I want to change that to bash
1
vote
1answer
98 views

tcsh on Windows: hashbang file support

I'm using pre-build binary exe of tcsh on Windows. I'm trying to write some clojure script. like this: #!/usr/bin/env java clojure.main (prn "Hello World!\n") first I try to direct run it in ...
1
vote
0answers
84 views

How to compile tcsh with MinGW on Win32?

I'm on windows now, But I don't have VisualStudio installed, I only have MinGW (MinGW distro), How can I compile tcsh with MinGW?
0
votes
1answer
84 views

Opening multiple shells with tcsh script

Currently working with kde3.5 Here is what I would eventually like to do to help my workflow: Have a script that: Opens multiple konsole shells Renames each shell This is what I have so far: ...
0
votes
4answers
40 views

printing contents of a http file to a shell?

I want to be able to retrieve the contents of a log file stored on a server in the form of: http://[SOME SORT OF ADDRESS]/file.txt and print it to a shell which can refresh using something like ...

1 2 3 4