1
vote
2answers
81 views
How can I understand that the user pressed which keyword?
I am coding a terminal like Linux terminal with C under Linux OS and I need to quit program when the user presses ctrl+D keywords. But I don't know how to understand that the user pressed these …
3
votes
2answers
39 views
How can I run a shell command from my cocoa app?
I want to run a simple command from my cocoa app through code, NOT creating a shell script and running it that way, but by running it through the application, being able to define everything and …
0
votes
0answers
1 views
Group Policy on Terminal Server 2008
Hi all,
I'll get straight to it. We have a domain controller running Windows Server 2003 and a new Terminal Server running Windows Server 2008. I was wondering what the best way to apply a group …
3
votes
13answers
784 views
Which terminal emulator do you use? Why?
I use Rxvt-unicode, only because I don't use a DE (just xmonad). It works fine with what I need (screen, irssi and vim), and it is fairly light.
Previously I used eterm, but I found it a bit heavy.
…
0
votes
2answers
54 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
133 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
58 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 …
10
votes
9answers
664 views
Expert R users, what’s in your .Rprofile?…
This question is maybe a little too cute, but I have always found startup profile files of other people both useful and instructive about the language. Moreover, while I have some customization for …
0
votes
1answer
31 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?
0
votes
6answers
83 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 ]
…
1
vote
3answers
101 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
3answers
49 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:~$ …
2
votes
1answer
56 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.
…
10
votes
16answers
1k views
Best font for terminal
Hi,
I like to find some new/interesting fixed width fonts for terminal console.
We all know Lucida / Courier, what else?
Anyone?
So, the winner is Consolas (which indeed is built in in new …
1
vote
1answer
77 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 …
