A terminal or command-line interface is a text-only interface for interacting with an operating system or a piece of software. A user typically types commands into the terminal to perform specific tasks.
302
votes
19answers
106k views
Print in terminal with colors using Python ?
I want to print in the terminal with colors. How can I do that in Python?
Another questions what is the best character thatwhen it is printed it look like a box [brick]?
I want to print colored ...
104
votes
25answers
17k views
Expert R users, what's in your .Rprofile? [closed]
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 ...
42
votes
4answers
17k views
What's a good Java, curses-like, library for terminal applications?
I would like to write a Java terminal application that does screen manipulation. Are there any good libraries out there that allow you to manipulate the screen like curses in the *nix/C world?
...
29
votes
6answers
15k views
Getting terminal width in C?
I've been looking for a way to get the terminal width from within my C program. What I keep coming up with is something along the lines of:
#include <sys/ioctl.h>
#include <stdio.h>
int ...
187
votes
17answers
70k views
Is there a better Windows Console Window? [closed]
I find working on the command line in Windows frustrating, primarily because the console window is wretched to use compared to terminal applications on linux and OS X such as "rxvt", "xterm", or ...
13
votes
8answers
21k views
Running a command in a new Mac OS X Terminal window
I've been trying to figure out how to run a bash command in a new Max OS X Terminal.app window. As, an example, here's how I would run my command in a new bash process:
bash -c "my command here"
But ...
54
votes
8answers
18k views
How to get console window width in python
Is there a way in python to programmatically determine the width of the console? I mean the number of characters that fits in one line without wrapping, not the pixel width of the window.
Edit
...
13
votes
3answers
5k views
color text in terminal aplications in unix
I started to write a terminal text editor, something like the first text editors in unix like vi. The only purpose is have a good and fun time, but I want to let in show text in color, so I could use ...
7
votes
4answers
16k views
How to open the command prompt and insert commands using Java?
There have been a few other questions on here sort of like this, but none seem to have any answers.
Is it possible to open the command prompt (and I guess any other terminal for other systems), and ...
7
votes
5answers
8k views
Writing unicode strings via sys.stdout in Python
Assume for a moment that one cannot use print (and thus enjoy the benefit of automatic encoding detection). So that leaves us with sys.stdout. However, sys.stdout is so dumb as to not do any sensible ...
27
votes
4answers
8k views
Coloured diff to HTML
I enjoy using git diff --color-words to clearly see the words that have changed in a file.
However I want to share that diff with someone without git or a colour terminal for that matter. So does ...
36
votes
5answers
43k views
Open a new tab in gnome-terminal using command line
gnome-terminal --tab
at the terminal, I expect it to open a new tab in the same terminal window. But it opens a new window instead.
I found out that its intention is to open a new tab in a new ...
10
votes
6answers
14k views
Clearing output of a terminal program Linux C/C++
I'm interested in clearing the output of a C program produced with printf statements, multiple lines long.
My initial guess was to use
printf("output1\n");
printf("output2\n");
rewind(stdout);
...
10
votes
1answer
1k views
Piping data to Linux program which expects a TTY (terminal)
I have a program in Linux which refuses to run if its stdin/stdout is not a TTY (terminal device). Is there an easy-to-use tool which will create a PTY, start the program with the newly created TTY, ...
4
votes
1answer
792 views
Send “C-(” to Emacs in VT100/xterm terminal (Mac OS X's Terminal)?
Is it possible in any way to send the key "C-(" to Emacs over a VT100/xterm terminal (Mac OS X Terminal)? Is there an escape sequence that could be sent to achieve the equivalent?
I suspect the ...
9
votes
1answer
579 views
Portable text based console manipulator
Applications can manipulate text based consoles or terminals, and change their colors, set cursor position,...
The supported approaches are:
For Unix-like systems: There is ANSI escape code.
For ...
9
votes
6answers
3k views
Alt key shortcuts not working on gnome terminal with Vim
I'm running Vim on a gnome terminal. But the alt key mappings are not working.
For example (this is just an example):
:imap <A-i> <Esc>
It works fine in GVim. But when I run the same ...
3
votes
5answers
1k views
How can I determine if a python script is executed from crontab?
I would like to know how can I determine if a python script is executed from crontab?
I don't want a solution that will require adding a parameter because I want to be able to detect this even from ...
1
vote
4answers
2k views
apt like column output - python library
Debian's apt tool outputs results in uniform width columns. For instance, try running "aptitude search svn" .. and all names appear in the first column of the same width.
Now if you resize the ...
5
votes
1answer
221 views
Why does Ctrl + . not work when I bind it as a command in emacs?
Ctrl + . doesn't work on the terminal when I bind it as a command in emacs. I tried this procedure on gnome-terminal and real terminal tty1. I start emacs with the -nw flag, then press Ctrl + h k (the ...
3
votes
8answers
44k views
How to open a command terminal in Linux?
I want to open the terminal (command prompt) on a Linux machine using Java code.
I know how to open command prompt in windows.The following code i have used in windows
String command= "cmd c/start ...
3
votes
3answers
3k views
Open a new prompt/terminal window from Java
I want to open a new terminal window, which will run a certain command upon opening. It preferably needs to be a real native window, and I don't mind writing different code for linux/osx/windows.
I'm ...
44
votes
1answer
31k views
curl json post request via terminal to a rails app
I'm trying to create a user on my rails app with a curl command from os x terminal. No matter how I format the data, the app returns a responses that non of my validations have passed.
curl ...
23
votes
4answers
15k views
Running script upon login mac [closed]
I am wondering if anyone is able to help me out with getting a .sh file to run when I log in to my account on my computer. I am running Mac OS X 10.6.7.
I have a file "Example.sh" that I want to run ...
24
votes
5answers
2k views
How to detect that emacs is in terminal-mode?
In my .emacs file, I have commands that only makes sense in graphical mode (like (set-frame-size (selected-frame) 166 100)). How do I run these only in graphical mode and not in terminal mode (i.e. ...
33
votes
1answer
3k views
How do I detect whether sys.stdout is attached to terminal or not?
Is there a way to detect whether sys.stdout is attached to a console terminal or not? For example, I want to be able to detect if foo.py is run via:
$ python foo.py # user types this on console
OR
...
15
votes
11answers
29k views
Sending commands and strings to Terminal.app with Applescript
I want to do something like this:
tell application "Terminal"
activate
do script "ssh user@server.com"
-- // write user's password
-- // write some linux commands to remote server
end tell
...
6
votes
6answers
5k views
Python unicode in Mac os X terminal
Can someone explain to me this odd thing:
When in python shell I type the following Cyrillic string:
>>> print 'абвгд'
абвгд
but when I type:
>>> print u'абвгд'
Traceback (most ...
19
votes
4answers
11k views
Python Sound (“Bell”)
I'd like to have a python program alert me when it has completed its task by making a beep noise. Currently, I use import os and then use a command line speech program to say "Process complete." I ...
7
votes
3answers
5k views
Uploading files on Amazon EC2
I have an Amazon EC2 instance running. When i access the url, I get the Apache Test page, and it says that i'll have to upload my files into /var/html/
My question is, how do i do it?
I use Mac OS X ...
7
votes
1answer
22k views
How to run a specific Android app using Terminal?
I installed Eclipse and Android SDK already. Everything is running fine.
I want to install an .apk file so I follow the instruction already. But the problem is, when I start the emulator, it doesn't ...
4
votes
3answers
22k views
How to import file into sqlite?
On a Mac, I have a txt file with two columns, one being an autoincrement in an sqlite table:
, "mytext1"
, "mytext2"
, "mytext3"
When I try to import this file, I get a datatype mismatch error:
...
10
votes
2answers
12k views
How to create a Batch File for Visual Studio Command Prompt
I want to create a batch file for Visual Studio 2008 x64 Cross Tools Command Prompt to do something continuesly in my PC, here is the senario.
svn update
delete some files
MSBuild MySolutiuon.sln
...
10
votes
4answers
8k views
How to get the output of an os x application on the console, or to a file?
I am writing a Cocoa application with Mono embedded. I want to run and see my debug output in Terminal. On the Cocoa side I am using NSLog(), and on the Mono side I am using Debug.Write(). I can see ...
9
votes
8answers
10k views
OS X Terminal UTF-8 issues
Okay, so I finally got myself a MacBook Air after 15 years of linux. And before I got it my big concern was UTF-8 support because no matter if I get files sent to me from windows or mac-clients theres ...
3
votes
2answers
5k 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?
10
votes
7answers
2k views
How to update a printed message in terminal without reprinting (Linux)
I want to make a progress bar for my terminal application that would work something like:
[XXXXXXX ]
which would give a visual indication of how much time there is left before the process ...
3
votes
2answers
3k views
NSTask NSPipe - objective c command line help
Here is my code:
task = [[NSTask alloc] init];
[task setCurrentDirectoryPath:@"/applications/jarvis/brain/"];
[task setLaunchPath:@"/applications/jarvis/brain/server.sh"];
NSPipe * out = [NSPipe ...
2
votes
2answers
6k views
Clean server infected with c3284d virus, using search and replace
I'm having an issue with the Notorious c3284d virus. It modifies pretty much all the html/php/js files it can find.
I've changed all the passwords and users on the server, so if it's a compromised ...
12
votes
2answers
1k views
How can I check if a Java program's input/output streams are connected to a terminal?
I would like a Java program to have different default settings (verbosity, possibly colored output where supported) depending on its use. In C, there is an isatty() function which will return 1 if a ...
6
votes
3answers
2k views
Execute external program from Java
I am trying to execute a program from the Java code. Here is my code:
public static void main(String argv[]) {
try {
String line;
Process p = Runtime.getRuntime().exec(
...
1
vote
1answer
616 views
trace() not written to flashlog.txt
I'm using mxmlc on a Mac terminal to compile an AS 3.0 project and then I run it by opening the Main.swf in Flash Debugger 10.
Now, errors get written to the flashlog.txt just fine but my trace ...
5
votes
3answers
12k views
Undefined symbols for architecture i386:
I've recently moved over to a mac, and am struggling using the command line compilers. I'm using g++ to compile, and this builds a single source file fine. if I try to add a custom header file, when I ...
3
votes
2answers
1k views
Signals received by bash when terminal is closed
Use trap to capture signals like this:
i=-1;while((++i<33));
do
trap "echo $i >> log.txt" $i;
done
And close the terminal by force.
The content in log.txt is then (under redhat ...
1
vote
1answer
202 views
Control + , in Terminal.app
I use the shortcut C-, with the window version of emacs.
(global-set-key (kbd "C-,") 'dabbrev-expand)
My problem is that this shortcut does not work in the console version of emacs.
I ve tried ...
1
vote
3answers
613 views
Execute external program from Java
I am trying to execute a program from the Java code. Here is my code:
public static void main(String argv[]) {
try {
String line;
Process p = Runtime.getRuntime().exec(new String[]{
...
187
votes
12answers
51k views
Is there any way in the OS X Terminal to move the cursor word by word? [closed]
I know the combination Ctrl+A to jump to the beginning of the current command, and Ctrl+E to jump to the end.
But is there any way to jump word by word, like Alt+←/→ in Cocoa applications ...
74
votes
10answers
32k views
CMD.exe replacement [closed]
Does anyone know of a good Command Prompt replacement? I've tried bash/Cygwin, but that does not really meet my needs at work because it's too heavy. I'd like a function-for-function identical ...
47
votes
7answers
24k views
How do I output coloured text to a Linux terminal?
How do I print coloured characters to a Linux terminal that supports it? I'm using C++ for this program, but I think that might be irrelevant.
EDIT: And secondly, how do I tell if it supports colour ...
25
votes
3answers
38k views
Copying files across computers using SSH and MAC OS X Terminal
Im trying to copy my .profile, .rvm and .ssh folders/files to a new computer and I know how to use the cp and ssh commands but I'm not sure how to use them in order to transfer files from one computer ...
