0
votes
2answers
49 views
Can’t use GCC in OS X Terminal
I have installed the developer tools. I can compile code via Xcode and according to the docs /usr/bin/gcc & /usr/bin/cc should point to /usr/bin/gcc-4.0. Neither the symlinks or gcc-4.0 exist on …
2
votes
5answers
126 views
Is there a command line framework for ruby?
So, there are web frameworks, there are GUI frameworks, I was just wondering if there was a console/command line framework for ruby?
Specifically, I would like to be able to:
Have a particular view …
0
votes
3answers
54 views
How can I display unicode characters in a linux terminal using C++?
I'm working on a chess game in C++ on a linux environment and I want to display the pieces using unicode characters in a bash terminal. Is there any way to display the symbols using cout?
An example …
0
votes
3answers
48 views
LINES and COLUMNS environmental variables lost in a script
Consider the following:
me@mine:~$ cat a.sh
#!/bin/bash
echo "Lines: " $LINES
echo "Columns: " $COLUMNS
me@mine:~$ ./a.sh
Lines:
Columns:
me@mine:~$ echo "Lines: " $LINES
Lines: 52
me@mine:~$ …
1
vote
1answer
72 views
Show colored compilation errors in C++ on Terminal
Hi all,
Is there any way to show compilation errors in colors on the terminal?
I mean when we do "g++ filename.cpp", is there a way to show the compiler messages in colors? By default it is always in …
1
vote
3answers
96 views
How do I retrieve the terminal width in Perl?
I want to output a progress bar, but how do I retrieve the terminal width in Perl?
A core Perl solution would be preferred, since I don't have access to a compiler, just an already installed 5.8.2 …
0
votes
6answers
73 views
Bourne Shell Scripting — simple for loop syntax
I'm not entirely new to programming, but I'm not exactly experienced. I want to write small shell script for practice.
Here's what I have so far:
#!/bin/sh
name=$0
links=$3
owner=$4
if [ $# -ne 1 ]
…
0
votes
1answer
21 views
AppleScript to open named terminal window
I have two windows/tabs set up to run in Terminal.app, "syd" and "mel". i.e. in Shell | New Window, "syd" and "mel" are listed. How can I open these terminal configurations with AppleScript?
1
vote
1answer
46 views
Switching focus between editor and terminal in Kate
When working in Unix with various programming languages I often use Kate as my primary editor.
It has a really nice function of being able to open a built-in terminal window which is quite useful.
…
3
votes
16answers
351 views
Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for?
For those who are using vim/emacs/terminals,etc (ie, not an IDE proper) what sort of projects are you working on? Are they big? Production? Are these the tools you use at work? Or mostly for smaller …
2
votes
4answers
83 views
Can STDOUT and STDERR use different colors under XTerm / Konsole?
Is it even achievable?
We need STDERR (ie. other streams then STDOUT) to have different colo(u)r. For example red.
We use bash, terminal should be Konsole (XTerm, gnome terminal or any usable).
…
0
votes
4answers
44 views
Viewing File in Binary in Terminal
First things first, I'm on a Mac ssh'ing into a Linux machine via Terminal.
I would like to view the contents of a file in the current directory, but in binary. Is there a binary mode for any text …
0
votes
4answers
114 views
Scrolling inside Vim in Mac’s Terminal
I've been googling around trying to figure out if it's possible to use my mouse wheel to scroll while inside Vim in Mac's Terminal, with no luck. It seems as if only X11 or iTerm support this.
Before …
0
votes
8answers
67 views
i want to continously run my java threads
I am running my java application where i have used threads...
i am running this application using ant command on the terminal..
But when i close my terminal or press ctrl+c,then java program which was …
2
votes
5answers
82 views
Book recommendation for Unix shell commands
Hi,
I want to learn more about UNIX shell commands, so I am searching a good book, that explains the most needed shell commands and how to get better on the terminal in general.
I am using …
