active questions tagged terminal - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T23:50:40Zhttp://stackoverflow.com/feeds/tag/terminalhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810327/cant-use-gcc-in-os-x-terminal0Can't use GCC in OS X TerminalRiddian2009-11-27T19:28:28Z2009-11-27T19:36:39Z
<p>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 my system (Snow Leopard). All I wish to do is compile some C on the terminal! I'm amazed by how complicated this task is. The command GCC is unsurprisingly returning "gcc: command not found".</p>
<p>Can anyone shed some light on this?</p>
http://stackoverflow.com/questions/1805499/is-there-a-command-line-framework-for-ruby2Is there a command line framework for ruby?Stephen Cagle2009-11-26T20:23:16Z2009-11-27T16:45:44Z
<p>So, there are web frameworks, there are GUI frameworks, I was just wondering if there was a console/command line framework for ruby?</p>
<p>Specifically, I would like to be able to:</p>
<ol>
<li>Have a particular view wherein I could tab to different input segments. Exactly like you can do with forms on a web page.</li>
<li>I would like the usual console shortcuts to work (ctr-k, ctr-a, ctr-e, etc)</li>
<li>If the cursor is at a certain input position, sometimes I would like it to response to a single key press event, rather than my having to enter text and then press enter.</li>
</ol>
<p>Does not have to be a unified framework. But I notice that it does seem somewhat cumbersome to write console apps in ruby. Are there any tools that make this easier?</p>
http://stackoverflow.com/questions/1799063/how-can-i-display-unicode-characters-in-a-linux-terminal-using-c0How can I display unicode characters in a linux terminal using C++?Lipis2009-11-25T18:37:39Z2009-11-25T19:19:34Z
<p>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?</p>
<p>An example that outputs a knight would be nice: ♞ = U+265E.</p>
http://stackoverflow.com/questions/1189759/expert-r-users-whats-in-your-rprofile10Expert R users, what's in your .Rprofile?...gappy2009-07-27T18:17:42Z2009-11-25T17:18:02Z
<p>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 bash and vim, I have nothing for R. For example, one thing I always wanted is different colors for input and output text in a window terminal, and maybe even syntax highlighting.</p>
http://stackoverflow.com/questions/1794050/applescript-to-open-named-terminal-window0AppleScript to open named terminal window mjs2009-11-25T01:07:14Z2009-11-25T14:55:03Z
<p>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?</p>
http://stackoverflow.com/questions/1783961/bourne-shell-scripting-simple-for-loop-syntax0Bourne Shell Scripting -- simple for loop syntax에이바2009-11-23T15:42:21Z2009-11-23T20:15:49Z
<p>I'm not entirely new to programming, but I'm not exactly experienced. I want to write small shell script for practice. </p>
<p>Here's what I have so far:</p>
<pre><code>#!/bin/sh
name=$0
links=$3
owner=$4
if [ $# -ne 1 ]
then
echo "Usage: $0 <directory>"
exit 1
fi
if [ ! -e $1 ]
then
echo "$1 not found"
exit 1
elif [ -d $1 ]
then
echo "Name\t\tLinks\t\tOwner\t\tDate"
echo "$name\t$links\t$owner\t$date"
exit 0
fi
</code></pre>
<p>Basically what I'm trying to do is have the script go through all of the files in a specified directory and then display the name of each file with the amount of links it has, its owner, and the date it was created. What would be the syntax for displaying the date of creation or at least the date of last modification of the file?</p>
<p>Another thing is, what is the syntax for creating a for loop? From what I understand I would have to write something like for $1 in $1 ($1 being all of the files in the directory the user typed in correct?) and then go through checking each file and displaying the information for each one. How would I start and end the for loop (what is the syntax for this?). </p>
<p>As you can see I'm not very familiar bourne shell programming. If you have any helpful websites or have a better way of approaching this please show me!</p>
http://stackoverflow.com/questions/1782107/how-do-i-retrieve-the-terminal-width-in-perl1How do I retrieve the terminal width in Perl?Steve Schnepp2009-11-23T09:46:10Z2009-11-23T15:36:32Z
<p>I want to output a progress bar, but how do I retrieve the terminal width in Perl? </p>
<p>A core Perl solution would be preferred, since I don't have access to a compiler, just an already installed 5.8.2 Perl.</p>
http://stackoverflow.com/questions/1780483/lines-and-columns-environmental-variables-lost-in-a-script0LINES and COLUMNS environmental variables lost in a scriptDavide2009-11-23T00:01:06Z2009-11-23T14:14:03Z
<p>Consider the following:</p>
<pre><code>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:~$ echo "Columns: " $COLUMNS
Columns: 157
me@mine:~$
</code></pre>
<p>The variables <code>$LINES</code> and <code>$COLUMNS</code> are shell variables, <strong>not</strong> environmental variables, and thus are not exported to the child process (but they are automatically updated when I resize the xterm window, even when logged in via ssh from a remote location). Is there a way in which I can let my script know the current terminal size?</p>
<p>EDIT:
I need this as a workaround do <a href="http://stackoverflow.com/questions/630519/can-you-make-vi-advance-the-screen-when-opened">this problem</a>: vi (as well as vim, less, and similar commands) messes up the screen every time I use it. Changing the terminal is not an option, and thus I'm looking for workarounds (scrolling down <code>$LINES</code> lines surely is not the perfect solution, but at least is better than losing the previous screen)</p>
http://stackoverflow.com/questions/1782915/switching-focus-between-editor-and-terminal-in-kate1Switching focus between editor and terminal in KateDana2009-11-23T12:37:23Z2009-11-23T13:00:18Z
<p>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. </p>
<p>The problem is that switching back and forth to the terminal view using a mouse is quite a pain and I can't find any shortcuts for this. The only shortcut I could find is for closing the entire terminal (not just changing the focus). This is a bit annoying as it causes the text in the terminal window to get truncated (I think it's a known Kate bug). </p>
<p>Does anyone know a better shortcut??</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/407129/best-font-for-terminal10Best font for terminalMike TK2009-01-02T15:35:20Z2009-11-23T10:06:53Z
<p>Hi,</p>
<p>I like to find some new/interesting fixed width fonts for terminal console.</p>
<p>We all know Lucida / Courier, what else?</p>
<p>Anyone?</p>
<p>So, the winner is Consolas (which indeed is built in in new windows7)</p>
<p>Jeff had good <a href="http://www.codinghorror.com/blog/archives/000157.html" rel="nofollow">topic</a> about that:</p>
<p>Other interesting fonts are:</p>
<pre><code>* Inconsolata
* Proggy Clean
* Terminus
* 6x13 (if you need small font )
</code></pre>
http://stackoverflow.com/questions/1779670/show-colored-compilation-errors-in-c-on-terminal1Show colored compilation errors in C++ on Terminalajay2009-11-22T19:18:29Z2009-11-22T19:38:47Z
<p>Hi all,</p>
<p>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 Black color. But if we have a lot of error messages, then it helps to have them in different colors (just like the code is highlighted in different colors).</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/257992/how-can-i-detect-gnome-terminal0How can I detect Gnome Terminal?Pistos2008-11-03T05:32:18Z2009-11-22T19:07:17Z
<p>I am writing a console application which makes use of the F1 key (for help). Unfortunately, while Konsole (of KDE) doesn't use this key, Gnome Terminal does, so the F1 key becomes inaccessible to my application. I don't think there's a way to detect whether the F1 key is already mapped in the GUI side of things (Gnome Terminal), but if there is, the answer to that will obviate this question. :)</p>
<p>Ergo, my next best bet is to try to detect whether I am running inside Gnome Terminal. Is there some way to do that? I'm primarily interested in gleaning this from within Ruby, but if it can be done via shell or environment variables, or virtual filesystem (/proc, /dev, etc.) then that will suffice.</p>
<p>I'm hoping for a reliable way to do this, but I can settle for "best guess" approaches like grepping the environment variables for clues that can let me reasonably assume that Gnome Terminal is the wrapping terminal.</p>
<p>Extra info: other keys are also "stolen" by Gnome Terminal. I intend to display some sort of informative message about alternative keys for Gnome users.</p>
http://stackoverflow.com/questions/1727261/scrolling-inside-vim-in-macs-terminal0Scrolling inside Vim in Mac's Terminalhora2009-11-13T05:16:03Z2009-11-22T14:09:21Z
<p>I've been googling around trying to figure out if it's possible to use my mouse wheel to scroll while inside <a href="http://en.wikipedia.org/wiki/Vim%5F%28text%5Feditor%29" rel="nofollow">Vim</a> in Mac's Terminal, with no luck. It seems as if only <a href="http://en.wikipedia.org/wiki/X%5FWindow%5FSystem" rel="nofollow">X11</a> or iTerm support this.</p>
<p>Before I give up, I thought I'd try the geniuses here to see if anyone knows a way to do this. So, does anyone know if I can set that up?</p>
<p>Or should I seriously consider using a different terminal application?</p>
http://stackoverflow.com/questions/615282/where-are-default-lscolors-set-in-rhel-5-x0Where are default LS_COLORS set in RHEL 5.x?WolfHumble2009-03-05T15:32:12Z2009-11-21T19:34:31Z
<p>In a terminal in Red Hat Enterprise Linux 5.x, running:</p>
<pre><code>[$] Env
</code></pre>
<p>returns (among other things):</p>
<pre><code>"LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33 . . ."
</code></pre>
<p>Most of the content in <code>LS_COLORS</code> I find in the file:</p>
<pre><code>/etc/DIR_COLORS
</code></pre>
<p>BUT the values "<code>no=00:fi=00:di=01;34:ln=01;36:pi=40;33</code> etc.", I have no success finding, even after grepping through the system.</p>
<p>In what file(s) are these values defined?</p>
<p>Yes, I know I can set the content of <code>LS_COLORS</code> to the values I please,
but what I wonder about is <strong>where</strong> the values above are <strong>defined</strong>.</p>
http://stackoverflow.com/questions/1763891/can-stdout-and-stderr-use-different-colors-under-xterm-konsole2Can STDOUT and STDERR use different colors under XTerm / Konsole?DinGODzilla2009-11-19T15:00:40Z2009-11-20T14:19:58Z
<p><strong>Is it even achievable?</strong></p>
<p>We need <code>STDERR</code> (ie. other streams then <code>STDOUT</code>) to have different colo(u)r. For example red.</p>
<p>We use <code>bash</code>, terminal should be <code>Konsole</code> (XTerm, gnome terminal or any usable).</p>
<p>Thanks if you know :-)</p>
http://stackoverflow.com/questions/1736601/do-you-use-vim-emacs-terminals-to-develop-c-c-what-kind-of-projects-is-this-pr3Do you use VIM/Emacs/Terminals to develop C/C++? What kind of projects is this practical for?Jimbo2009-11-15T04:51:02Z2009-11-20T11:50:24Z
<p>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 things...or big things broken into small things? Sorry...enough questions.</p>
<p>I ask because I'm studying computer science right now, and am super excited about it. I had an internship programming J2ME for a government agency recently and it was Netbeans and eclipse all the way. So I've only had a few "minor-league" years in the business.</p>
<p>In short, what is practical for the CL type tools, versus an IDE such as 'beans and VS. I've got a lot to learn, and the CL tools will probably teach me, versus shielding me like an full on IDE might.</p>
http://stackoverflow.com/questions/1761406/vsto-excel-add-in-not-loading-on-terminal-server0VSTO Excel add-in not loading on terminal serverChris2009-11-19T07:01:48Z2009-11-20T07:18:24Z
<p>My configuration is windows server 2003 (i'm logged in with admin privileges), office 2003, vtso runtime 2005 se. After installing my addin, all registry keys are in the correct locations and I have given fulltrust to my assembly using caspol.exe. My addin is a application level addin. </p>
<p>When I run excel with regmon and filemon running I can see that excel reads the registry keys of my addin, but I do not see the AddinLoader.dll being loaded in filemon. I get no errors from vsto since it doesn't appear the runtime is even starting up. I've read almost all of the vsto doco on msdn particularly the application addin architecture and vsto runtime overview as well as various other articles and discussions on the topic. I still can't figure out why the runtime won't load on the terminal server.</p>
<p>When installing this on an XP machine it all works fine and my addin gets loaded every time.</p>
<p>Anyone have any idea what might be preventing the vsto runtime from loading?</p>
http://stackoverflow.com/questions/1765311/viewing-file-in-binary-in-terminal0Viewing File in Binary in Terminaladam_02009-11-19T18:04:11Z2009-11-19T18:20:09Z
<p>First things first, I'm on a Mac ssh'ing into a Linux machine via Terminal.</p>
<p>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 editors like VI or Nano or the like?</p>
http://stackoverflow.com/questions/1762392/i-want-to-continously-run-my-java-threads0i want to continously run my java threadsAzhar2009-11-19T10:41:33Z2009-11-19T10:55:55Z
<p>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 running stops...
Please help me out to solve this as i want to run this program continously...</p>
http://stackoverflow.com/questions/1464641/how-to-see-what-label-color-is-on-a-file-folder-from-within-termnal-mac-os-x1How to see what label color is on a file/folder from within Termnal (Mac OS X)unknown (google)2009-09-23T08:12:31Z2009-11-17T16:27:27Z
<p>I want to include in a script a check for a file input to see if the file/folder has a color set and if it does, which one... (I don't need help with the creation of this script, just need the command to check what color the label is).</p>
<p>eg, like these colors (grey):
<a href="http://img.skitch.com/20090923-t1xsphn47tdq64b8ksb43wh3e8.png" rel="nofollow">http://img.skitch.com/20090923-t1xsphn47tdq64b8ksb43wh3e8.png</a></p>
<p>I would like to avoid using apple script.</p>
http://stackoverflow.com/questions/1733155/how-to-set-the-terminals-size0How to set the terminal's size?iNPUTmice2009-11-14T03:38:31Z2009-11-14T21:33:29Z
<p>How do I get the terminal size in Go. In C it would look like this:</p>
<pre><code>struct ttysize ts;
ioctl(0, TIOCGWINSZ, &ts);
</code></pre>
<p>But how to i access TIOCGWINSZ in Go</p>
http://stackoverflow.com/questions/1728997/mac-os-x-could-not-start-terminal-app-shell-has-illegal-value0Mac OS X - Could not start Terminal.app - shell has illegal value [closed]chemm2009-11-13T12:40:22Z2009-11-13T12:46:39Z
<p>I can not run the Terminal.app after rolling back my system from time machine.</p>
<p>Mac OS X Version 10.6.2</p>
<p>It displays the following error.
"Your are not authorized to run this application"
"The administrator has set your shell to an illegal value"</p>
<p>After that I have deleted the file
~/Library/Preferences/com.apple.Terminal.plist</p>
<p>But the same message is displayed.</p>
<p>I have repaired all system rights with the DiskUtility but that did not help.</p>
http://stackoverflow.com/questions/1722951/text-disappears-when-typing-long-commands-in-zsh-on-osx0Text disappears when typing long commands in zsh on OSX?Michael Barton2009-11-12T15:18:39Z2009-11-12T17:31:57Z
<p>When I'm typing a command longer than around 20 characters the text disappears and the cursor moves to a different location in the terminal. How do I stop this? I find it difficult to understand what I'm doing when this happens.</p>
http://stackoverflow.com/questions/1097711/how-to-get-repository-for-core-plot0How to get repository for core-plot Omar2009-07-08T12:16:56Z2009-11-12T11:50:50Z
<p>I am not able to get the repository for core-plot. What I am doing is that I am typing this in the terminal:</p>
<pre><code>hg clone https://core-plot.googlecode.com/hg/ core-plot
</code></pre>
<p>and this is what I get:</p>
<pre>
Traceback (most recent call last):
File "/usr/local/bin/hg", line 25, in
mercurial.util.set_binary(fp)
File "/Library/Python/2.5/site-packages/mercurial/demandimport.py", line 75, in __getattribute__
self._load()
File "/Library/Python/2.5/site-packages/mercurial/demandimport.py", line 47, in _load
mod = _origimport(head, globals, locals)
File "/Library/Python/2.5/site-packages/mercurial/util.py", line 93, in
_encoding = locale.getlocale()[1]
File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/locale.py", line 460, in getlocale
return _parse_localename(localename)
File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/locale.py", line 373, in _parse_localename
raise ValueError, 'unknown locale: %s' % localename
ValueError: unknown locale: UTF-8
</pre>
<p>I can't seem to get it to install. Please give me guidance on how to install the repository.</p>
http://stackoverflow.com/questions/1709435/book-recommendation-for-unix-shell-commands2Book recommendation for Unix shell commandsbrainfck2009-11-10T16:51:02Z2009-11-11T21:23:13Z
<p>Hi,</p>
<p>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.</p>
<p>I am using Ubuntu(Debian).</p>
<p>The book should not have more than ~250 pages.</p>
<p>I am neither a noob nor a pro using the terminal.</p>
<p>Best regards</p>
http://stackoverflow.com/questions/1712045/copying-a-list-of-files-via-terminal1copying a list of files via terminaldot2009-11-10T23:41:47Z2009-11-11T00:04:32Z
<p>I have a list of filenames called list.txt.</p>
<p>I would like to copy the files in this list to a new folder. </p>
<p>How should I go about doing this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1698423/how-can-you-take-ownership-of-a-hid-device1How can you take ownership of a hid device?Catskul2009-11-08T23:58:39Z2009-11-10T18:46:41Z
<p>What I would like to take ownership of a hid device that may already have been plugged in, consume it's output, while preventing others(X11 or terminal) from consuming it.</p>
<p>If I can help it, I don't want to pretend to be a terminal, but rather to monopolize a particular hid or character device. The idea is that some hid devices may be recognized as mice/keyboards by x/terminal, but a second mouse or keyboard could be used for something else, but to do that you need to make sure they aren't sending spurious input into an open terminal.</p>
<p>Does anyone have any insight as to how this might be done?</p>
http://stackoverflow.com/questions/1700995/gnome-terminal-virtualenv-and-a-bunch-of-services0gnome-terminal, virtualenv and a bunch of servicesnail.xx2009-11-09T13:29:26Z2009-11-09T14:17:52Z
<p>Hi folks</p>
<p>I'm working on a server-side project that consists of several services. Each service is run in interactive (i.e. non-daemon) mode, this is handy while active development. The project is in virtualenv. So the typical way to start a service is:</p>
<pre><code>$ cd ~/to/vitualenv/subdir/where/service/code/located
$ source ../path/to/virtualenv/bin/activate
$ ./script-to-start-service
+ Set title of terminal to the service name via GUI
</code></pre>
<p>It would be ok if there were 2-3 services at all. But we have a dozen. And restarting all of them after computer reboot is a real pain.</p>
<p>So what I want is a script, that once executed opens me new gnome-terminal window with a dozen of named tabs (one per service), with activated virtualenv in each and running bunch of service instances in that tabs. The best result I've got so far is:</p>
<pre><code>$ gnome-terminal --working-directory=~/to/vitualenv/subdir --window --tab --tab
</code></pre>
<p>--title and --profile looks like been ignored and if --command is specified newly opened window is closed just in moment after open.</p>
<p>Any ideas? How to source activation script, give a title, and run service?</p>
<p>P.S. It is for development purposes only, not for deployment on real servers.</p>
http://stackoverflow.com/questions/1696433/how-to-exit-a-git-status-list-in-terminal1How to exit a git status list in terminal?Luis Martins2009-11-08T13:15:48Z2009-11-08T16:28:51Z
<p>Im new to Git and Terminal. This is pretty basic stuff, but how can i exit a listing mode generated by the git status command?</p>
http://stackoverflow.com/questions/420456/open-terminal-here-in-mac-os-finder10Open terminal here in Mac OS finderAbdullah Jibaly2009-01-07T14:21:21Z2009-11-06T17:08:23Z
<p>Is there something similar to the "Open Command Window Here" Windows Powertoy for Mac OS? I've found a couple plugins through a google search but wanted to see what works best for developers out there.</p>