Tagged Questions
2
votes
2answers
512 views
Unix “time” command with pipeline prints no time-report
Of the two C-shell aliases below, only the first prints the time command's report of elapsed time. How can I get the alias with the pipeline to also print the time report?
alias make1 'time make'
...
0
votes
2answers
833 views
Customizing CSH prompt
I'm using the directions here to customize my CSH prompt. Here's what I'm using:
set prompt="\n%{\033[1;32m%}%m %{\033[36m%}${cwd}$ %{\033[0m%} "
First of all, the ${cwd} part isn't giving the full ...
0
votes
1answer
823 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 ...