0
votes
1answer
11 views

Changed PATH variable and now Terminal won't accept most console commands

I'm a newbie to programming, and I've recently started learning basic Terminal commands on my Mac OSX 10.8. One exercise involved changing the PATH variable by entering this into the console: touch ...
0
votes
0answers
14 views

Misplaced letter in terminal [closed]

I have installed centos and GNOME inside a Virtual Box but the letter position is misplaced which look like following picture. How could it resolved?
0
votes
0answers
28 views

JLine, how to get the full filename in Windows

Dear all JLine users, I am recently developing a console application where I use JLine, to provide command and file name completion. It works pretty well with FileNameCompleter but however I cannot ...
4
votes
1answer
124 views

How can I sign a message with a Bitcoin private key from terminal

I'm trying to sign a message with a Bitcoin private key to get a refund from InstaWallet. Any hints on how to do this from a terminal on OS X?
0
votes
1answer
98 views

How to create a console terminal?

From where I can start creating a console for my C++ programs ? I need a bare minimum console to launch and manage console applications, the reason why I need this it's because I need to pack ...
0
votes
0answers
34 views

C++ on mac: Clear console

right now for my console program I use: system("clear"); This clears the screen by just scrolling down so you can't see the text above it. How would I go about removing the text that was inserted ...
0
votes
0answers
27 views

How to let the xterm have a totally clear setting? [closed]

I have a csh script which would maily do: 1 . xterm -e "xxxx" 2 . xterm -e "xxxx" But I found in the second xterm windos, all the settings made in the 1st xterm are still there. For example, there ...
1
vote
1answer
98 views

grails run-app > can't see terminal input

On Ubuntu 12.04, when I run grails run-app, after stopping the app, the terminal cursor doesn't move when typing, and no text appears. I can still type commands, but I have to either do it blindly or ...
0
votes
1answer
73 views

GUI program with toggable console?

I've seen some apps allow you to show/hide the console when you need to read log messages. For example Blender3D allows that (blender.org). I was wondering if this can be done in Python and how. My ...
0
votes
0answers
86 views

Update three separate lines in a loop in console using ncurses

I want to update three different lines in a virtual term simultaneously, i.e. in a loop they will be constantly updated and they are three separate lines. Now of course the line are separated by \n s ...
1
vote
1answer
172 views

Rails console does not start on ubuntu 12.04

i am using rails server without any problem ubuntu 12.04. But I wanna try some methods at console on terminal and i use rails console command. but it does not work. The output is here: ...
0
votes
0answers
73 views

I can't see what I'm typing to answer a raw_input line in my terminal

I'm writing a little game in python, using a console readLine method that looks like this: class Console(object): def clear(self): #Method to clear the screen os.system("clear") ...
2
votes
1answer
41 views

how to write a coordinated element into a given console?

given the next console: import os import tty import termios from sys import stdin class Console(object): def __enter__(self): self.old_settings = termios.tcgetattr(stdin) ...
0
votes
1answer
88 views

copy text from terminal to memory

I know it will appear ugly, but, suppose a simple program like: int main(void) { int line=0, column=1; char c; system("clear"); printf("0123\n4567\n"); getprintedchar(column, line, ...
1
vote
3answers
238 views

Vim under mac does not behave as expected

I recently got a mac. I was previously working on a laptop with ubuntu and I was using vim. I now will discuss about vim in console (iTerm2 or the default terminal) and macvim. The problem is that ...
0
votes
0answers
157 views

Mono console app in 256 color terminal

Do mono apps support 256 color terminals? my program is giving very strange output in a 256 color environment. Should I just check the $TERM value and disable colour entirely if its 256 color? My ...
4
votes
3answers
315 views

Get Terminal width Haskell

How to get the width of the terminal in Haskell? Things I tried System.Posix.IOCtl (could not figure out how to get it to work) This only has to work unix. Thanks
1
vote
1answer
228 views

Run Command From Within C# Mono Application in Linux

I am wondering if a Mono C# application running in Ubuntu can somehow run a terminal command. For example, could the user give the program his or her password and then have the application run sudo ...
2
votes
1answer
124 views

How to make Ruby wait for mysqldump?

I want to assign the output of mysqldump to a variable, and use the generated output later. Attempt 1: > 1.9.3-p125 :020 > x = `mysqldump falala` mysqldump: Got error: 1045: Access denied ...
4
votes
1answer
2k views

Why doesn't my terminal output unicode characters properly?

For example, my terminal does $ echo -e "\xE2\x98\xA0" ��� instead of $ echo -e "\xE2\x98\xA0" ☠ . Why is this? How do I make my terminal output the proper unicode symbols? I'm using Gnome 3's ...
-1
votes
2answers
45 views

How do I determine whether PHP is running from the console or not?

php -f script.php param1 param2 At the moment, I am just checking whether isset($argv). Is this the best way? P.S. I also wanted to know if all input parameters are always stored in $argv?
0
votes
2answers
1k views

How to run ruby code from terminal?

So i need to run a few lines of ruby code from terminal, but i can't find needed parameter for it. Can you please tell.
-5
votes
1answer
93 views

Launch terminal from code in Python [closed]

I need to launch a python terminal from the code of one wxpython application when pressing a button. Is it possible?
1
vote
1answer
414 views

Emacs (Multi)Term vs Xterm vs Console & TMUX

I'm an Emacs user trying to learn a software tool that is best run from a terminal. The default set-up to get the most out of that tool is to use xterm for interaction and call Vim for editing. One ...
0
votes
4answers
195 views

Line breaks when using rails console(Terminal)

When I type large ActiveRecord queries,Before finishing the query, the line is breaking and I can't even reading or typing the command properly.I am using ubuntu.Any solution?
1
vote
1answer
185 views

cat() outputs integers instead of list values in R

Here's the dput for my list: structure(c(5L, 3L, 1L), .Label = c("id0", "id1", "id2", "id3", "id4"), class = "factor") which, when we use print() outputs [1] id4 id0 id2 Which is what I want ...
0
votes
0answers
85 views

Python call script abort safely on intentional infinite loop

I have a Python script; file decoder/parser that keeps listening (execute method: LiveParse()). I've made a stop property like this in the Class stop = False LiveParse() just keeps calling itself ...
0
votes
0answers
112 views

node.js: Rewind and truncate console output?

I have a daemon script that clears/outputs to stdout every X seconds, like this: function clearTerminal(){ process.stdout.write('\u001B[2J\u001B[0;0f'); } function printNum(){ var rand = ...
0
votes
1answer
154 views

unexpected end of file errors when starting xterm

I'm getting an unexpected end of file on line 27 of this script, which I didn't write but appears in my /etc/profile folder and apparently executes to setup environmental variables for my BASH shell ...
3
votes
3answers
429 views

How do I change the color of current cursor position indicator?

when I open a terminal I have a black background with white characters. I also have a green placeholder that indicates to me where currently is the cursor. This behaviour is the same during any perl ...
0
votes
1answer
152 views

dialog (shell script program) but for C/C++ programs

I'm looking for a library or something usable from C/C++ (cross-platform if possible) that does something similar to the program "dialog", which is/was available on most Linux systems. Basically, I ...
3
votes
2answers
530 views

Open Chrome from terminal with developer console open

I can run Google Chrome from the command line using $ google-chrome, but what flag can I pass to open it with developer console already open, preferably open to the console tab? I checked the man ...
1
vote
1answer
76 views

Interactive Language Console

I've been doing some browsing on interactive consoles for programming languages such as: http://tryruby.org/levels/1/challenges/0 or even better, the tutorials at http://codeschool.com What would be ...
0
votes
3answers
306 views

Ubuntu Linux: terminal limits the output when I get the full Twitter Streaming API

I have this python script that outputs the Twitter Stream to my terminal console. Now here is the interesting thing: * On snowleopard I get all the data I want. * On Ubuntu (my pc) this data is ...
1
vote
1answer
182 views

What does uptime command results mean

If i call uptime on my server via shell i get string like this: # uptime 22.23.23 up 5 days, 51 min, 3 users, load average 34.32 16.08 5.07 what does this part mean load average 34.32 16.08 5.07 ...
0
votes
1answer
519 views

how to change background and colors of vim with vimrc plugin?

I have a problem using Vim colorschemes. I've downloaded and installed this plugin but I don't know how to make my choice permanent. Could you tell me how to do it? Here is a part of my .vimrc ...
0
votes
1answer
68 views

Windows API call to change console video mode?

Is there a Windows API call to change a terminal session's video mode, in a manner not dependent on INT 10H? (I specifically need to get to video mode 3 -- saving the old version of the screen, and ...
0
votes
1answer
321 views

Monodevelop console on OS X

I'm using Monodevelop on OS X to write some basic command line programs. When I run my program the output is sent to a new Terminal window. How can I have the output sent to a console that's part of ...
1
vote
3answers
293 views

Change Font dynamically in console

Is there a proper plugin or a class to change font size, font type and decoration within a common output console? You can change terminal's font by going into preferences but that is not what I'm ...
1
vote
1answer
137 views

How can I compute a sorted list of preferred terminal types?

In order to know what terminal to configure by default, I am looking to build a sorted list of preferred terminals. Is there a comparison, preferably as a table of different terminal types including: ...
0
votes
2answers
78 views

Is there something similar to “keypad” without using “Curses”?

Is there something similar to keypad(1) outside from Curses? I would like to write something like this, but without using Curses and without handling the escape sequences myself. #!/usr/bin/env perl ...
0
votes
1answer
288 views

Listing of all gnome-terminal windows

My ubuntu setup, has various shell-scripts that help me get my work done. Of which, many of the important ones, are persistent. I have a single shell, that does the "loading" of these various ...
1
vote
4answers
322 views

Limit Console Input Length in C:

I am beginning to design a shell application to run within a Linux terminal for a class I am taking. This, of course, will involve reading variable-length input strings (commands) from the user. I ...
1
vote
1answer
447 views

Eclipse console window that respects cursor position calls allowing a progress bar

I'm using the code from this website (Nurullah Akkaya): public static void main(String[] args) { for (int i = 0; i < 100; i++) { try { Thread.sleep(100); } ...
1
vote
1answer
250 views

How can I use Django to write a console app (i.e., text-based & used from a terminal) that runs over the Internet?

There is so much power at the command line. Web pages are for non-power-users. I'd like my Django app to also have a console-based interface so that people can really work fast and not fiddle with ...
0
votes
1answer
198 views

check what is in database through terminal

I'm looking for command, which are helpful for seeing what we have in our database tables. Any hints?
3
votes
3answers
1k views

How to get terminal window width?

I am working on embedded system using C and linux. User can connect to the device via SSH or a console serial cable. He can do this through PuTTY or Tera Term. My question is, after he is connected, ...
1
vote
2answers
206 views

C++ cin stay on line after entering input

OK I have a simple app that generates 2 integers and asks the user to sum them and enter the result as input. I am checking that the input is an integer. If it's not I want to rewrite the whole line ...
6
votes
2answers
937 views

Python module to enable ANSI for stdout on Windows?

I am looking for a Python module that would add ANSI support under Windows. This means that after importing the module, if you output ANSI escaped strings, they will appear accordingly.
0
votes
2answers
250 views

Is it possible to display text in a console with a strike-through effect?

I have already looked into ANSI escape codes, but it looks like only underlining is supported. Do I miss something or is there another option? If it is not possible, is there something equivalent in ...

1 2 3