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.

learn more… | top users | synonyms (1)

0
votes
2answers
19 views

On linux, how to wrap text around the output of a command and save it to a file?

browserify my_file.js returns a stream with the result of the conversion of my_file to browser. Is there a way to wrap "" readers around that output? For example: echo "<html>" > browserify ...
0
votes
0answers
25 views

How to svn copy only specific folders from trunk to new branch

I'm new to SVN and trying to learn the process. I have a trunk with many directories that looks something like this: trunk folder1 language1 language2 folder2 language1 ...
1
vote
1answer
57 views

(Mac OSX) Adding libraries to C -specifically gnuplot

I am a begineer trying to get code in C. I am working on a Mac and using xcode. My only past experience has been with java using eclipse and everything was pretty straight forward. I have almost no ...
0
votes
1answer
38 views

Python unicode terminal output

Please help me, I tried a lot of technics, but I cant make python print utf-8 symbols on the screen. I need simply to read from a utf-8 coded standard input stream, count characters and print their ...
0
votes
1answer
292 views

rvm install error running 'requirements_osx_port_install_port'

Im trying to install rvm on my machine and select a version but im getting this horrible error can anybody help? I need to install dandelion deploy but cannot due to this problem. Error running ...
0
votes
1answer
32 views

Compiler Error in ptmconvert (C/C++)

I'm trying to compile some mixed C++ and C code on a mac in the terminal for an image converter, and I'm running into several errors. The imager converter code is available here: ...
0
votes
2answers
35 views

How can i run java application with console-only?

I wrote an application in java that have graphical window. (and uses open-gl) Now, this application should work on Linux servers. What happends if i try to run the application on a linux terminal-only ...
0
votes
0answers
14 views

How do I get Homebrew to recognize my Git install? [migrated]

I've installed Homebrew and fixed all of the errors that brew doctor reports, except this one: martinjames$ brew doctor Warning: An outdated version of Git was detected in your PATH. Git 1.7.10 or ...
0
votes
1answer
51 views

Loading a new vim colorscheme

I am trying to load a new vim colorscheme without any luck. I have downloaded the railscasts.vim scheme and have put this in: ~/.vim/colors My .vimrc looks like this: colorscheme railscasts ...
0
votes
1answer
36 views

Applescript: Keeping track of multiple terminal windows and writing into each of them

I've got a setup procedure for a project that involves me using multiple terminal windows. The start up procedure is sort of messy and involves me tabbing between the terminal windows (different tools ...
1
vote
0answers
19 views

Remove spaces from filenames in folder

I have a situation where I need to daily go over 400+ files in a folder on Xsan and replace spaces with under-scores in the filenames of the files. Does anyone one have a script at hand that I can ...
0
votes
0answers
30 views

Separate STDOUT noise from ncurses

I am trying to run an ncurses GUI application on an ARM board. I am running it using the serial console ttyAMA0 port. But when I run the ncurses program, the other processes running in the background ...
0
votes
4answers
92 views

Bower: Install 2 versions of jQuery

How would I go about installing 2 versions of jQuery using bower? I want to have v2.0 as well as 1.9.1 for browser support fallback The issue I'm having is that if you run bower install ...
0
votes
0answers
24 views

Killing google drive processes with terminal in osx

I'm posting this because I had this issue and had a hard time finding an answer. I was trying to kill google drive with terminal but couldn't see the PID because it goes too fast. So, you do this: ...
0
votes
0answers
15 views

Terminal not listing Applications folder [migrated]

The problem that I am running into is that when I cd into my Applications folder and try to ls to see all my folders it doesn't show anything. This is the only directory that does this as I am able to ...
0
votes
1answer
34 views

Safe way to establish the initial state again.

Is there a possibility of calling the function main without the function _end_win being called? #!/usr/bin/env perl use warnings; use strict; use 5.10.0; use Term::ReadKey; use constant { ...
-1
votes
0answers
20 views

Connecting ssh from ubuntu [migrated]

I want to connect to ssh from ubuntu terminal but I don't know how. I have searched it on google but I don't understand. I have an ip adress, username and password. If someone can explain to me how ...
0
votes
1answer
44 views

Can't open lib '/opt/ibm/iSeriesAccess/lib64/… : file not found?

I am connecting to IBM AS 400 server through php. The ODBC drivers are properly installed and i can do everything from browser. But when i execute a php file on linux terminal (php -f filename.php), ...
0
votes
1answer
24 views

Terminal Not Working after installing SASS / COMPASS

I just installed Sass and compass. I had to modify user permission in usr/bin so I typed in my command line defaults write com.apple.Finder AppleShowAllFiles TRUE and changed the permission using the ...
1
vote
2answers
37 views

Play sound on command error in terminal [closed]

I'm the student manager at a college helpdesk, and we extensively use rsync to back up data from users' machines. However, one problem I've noticed is that a lot of times, we'll have a network ...
0
votes
1answer
30 views

Bash: troubles with find--not finding existing files [closed]

Not sure what mistake I am making, but find is not returning anything. What is wrong with my syntax? I have consulted several online resources and my syntax seems identical to the suggested commands. ...
0
votes
2answers
37 views

LoadError on require './primes.rb' in terminal

When I do require './primes.rb' in irb I get this: 1.9.3-p392 :004 > require './primes.rb' LoadError: cannot load such file -- ./primes.rb from ...
0
votes
0answers
20 views

set tabstop not working for bash [closed]

How do I set the tab width / tab-stop in bash? When I cat file tabs print out with a width of 8. This seems to effect gdb as well. If I set the tab width in bash does this also fix gdb?
0
votes
1answer
29 views

How do I use a command in an if statement in a Terminal Script on mac?

I am trying to write a script that will toggle between showing and hiding hidden files in Finder, but I'm having trouble with an error: ./HiddenFileToggle: line 1: [defaults: command not found ...
0
votes
1answer
112 views

How do I upgrade Bash in Mac OSX Mountain Lion and set it the correct path? [closed]

since Mountain Lion still uses the old bash 3.x, I was wondering if there is a good tutorial (or if somebody could post one here) on how to upgrade bash to the latest version. Also, it would be ...
0
votes
1answer
39 views

Why alternatives command is needed when installing Java on a Linux machine

The below command is need when installing Java on a Linux machine (saw the command in a tutorial). alternatives --install /usr/bin/java java /usr/java/jre1.7.0_01/bin/java 20000 man alternatives ...
0
votes
2answers
60 views

SVN checkout mac terminal

I have some issues to download a directory though mac's terminal. On Windows: svn+ssh://netimage@xxxxxx.dk/home/netimage/svn/xxxxx.dk2 I've tried it though mac terminal via. this without luck. ...
0
votes
1answer
35 views

Ansible bash profile, prevent verbosity

I'm installing Ansible, and have added the commands below to my ~/.bash_profile file. # Setup Ansible cd ~/github/ansible source ./hacking/env-setup cd ~ export ANSIBLE_HOSTS=~/ansible_hosts # End ...
-2
votes
0answers
10 views

Finding desktop path from single user boot root [closed]

Having issues with my MBP shutting down on restart (empty progress bar screen) In the mean time I would like to backup just the content on my desktop (the only not backed up data I have) but not sure ...
-2
votes
0answers
12 views

how to transcode tput output [closed]

tput sometimes it break the environment as the result of starting a new process. I want to transcode tput output to escape sequences, so it can be used more convenient in the terminal. so how to do ...
0
votes
1answer
55 views

Autoconf not linked in homebrew, how to link it?

I'm trying to install autoconf view homebrew on mountain lion, I did this $ brew install autoconf and I got Warning: Could not link autoconf. Unlinking... Error: The brew link step did not complete ...
0
votes
2answers
41 views

Automate SMTP Using Python

I'm just beginning to use python to automate sending emails through gmail. I have gotten the whole process to work just typing directly into the command line, but now I want to automate the process ...
1
vote
2answers
45 views

How do I tell python to launch a users default terminal?

I found this solution before, but it keeps trying to launch xterm instead of the default (in my case Terminator). Could someone help? def terminal(self): if sys.platform.startswith('linux'): ...
-1
votes
1answer
54 views

open folder from terminal's current directory (Linux Debian) [closed]

Is there a command in the terminal to open a folder browser (Nautilus, Caja, etc) at the current directory? I.e. ~/very/long/path/ $ open-folder-command opens a folder at ~/very/long/path/ Or is ...
1
vote
1answer
87 views

Unable to run Mongo shell (Mac)

I'm new to web development and i wanted to get started with some RoR (using Locomotive CMS). One of the things Locomotive asks for is to have Mongodb. I installed using homebrew by following this ...
0
votes
0answers
24 views

How do I use tar to transfer through ssh on a non standard port? [migrated]

I am trying to transfer all files from within a directory through tar as follows: tar cz * | ssh -p 57310 root@example.com tar xzv -C /home/site/www and the error that is returned is stdin: is not ...
1
vote
2answers
20 views

Tarring files exclude the path before the folder i want to tar

Im trying to tar a set of subfolders and then tar its parent folder afterwards via a ruby script. The structure is as follows: /x/y/z/ParentFolder/Subfolder1 /x/y/z/ParentFolder/Subfolder2 ...
0
votes
0answers
13 views

Concatenate a .aspx in Mac OS X terminal with proper encoding?

On a Mac via the terminal, I'm trying to concatenate 2 files into the file Default.aspx. This file is being served via IIS. cat page-header.aspx _site/index.html > _site/Default.aspx When ...
-2
votes
2answers
30 views

php script error when using dirname [closed]

$reportDir = dirname(dirname(__FILE__))."/data/$orgShortName/cron"; if(!is_dir($reportDir)) { mkdir(dirname(dirname(__FILE__))."/data/$orgShortName/"); } $reportUrl = ...
0
votes
0answers
27 views

Passing chars from keyboard from one process to another with pipe

im trying make a game that consist 2 C files. The game need to be running over linux terminal. The game is tetris game , 1 C file is the keyboard listener and one is the view. The first C file ...
1
vote
0answers
7 views

couch db - URI address

I have bd "List" with some products like: { "_id": "car1", "_rev": "1-6e192e3f87447ec187052941cf365071", "price": "950", "shop": "Shop1" } I have created view "Shop" to check what ...
1
vote
1answer
39 views

Struggling to comunicate between processes with signals

im trying to create a game in C under linux terminal. I need to create a tetris game that consists of two c files, One C file create execute file (a.out) and the other create (draw.out). The first ...
0
votes
0answers
27 views

How to access Google Drive Folder with Terminal in Mac? [closed]

I want to access some google driver's folders by terminal, how can I do this? cd "something here works"? I already tried, but I couldn't do it.
0
votes
0answers
37 views

Xcode Running application using external terminal

I am developing a command line tool using Xcode. Console provided by the Xcode is not a full fledged one. I want launch command line tool(Product) on external terminal (Say Terminal app)and ...
0
votes
0answers
8 views

Copy a certain file from a CPIO file to a different directory

I am trying to copy a single file from a .cpio file, to a different directory rather than the tree inside it. I am trully sure it is possible, my teacher did it. I have tried this: # cpio -i -F ...
0
votes
0answers
21 views

PDF Lib install fail on linux server. Using pecl install pdflib

I'm attempting to install pdflib on my server and receiving the error: configure: error: pdflib.h not found! Check the path passed to --with-pdflib=<PATH>. PATH should be the install prefix ...
0
votes
1answer
27 views

adding ~/bin directory in your path [closed]

I need to add ~/bin directory in your path. But I am not sure what the actual command for this is, I know it goes in my .bash_profile Does anyone know this, or a tutorial on how to set up a new ...
2
votes
1answer
81 views

What's the point of an interactive Ruby subshell?

Starting up an interactive Ruby shell in the Terminal ('irb'), one can continue to open up irb subshells endlessly. What's the point of this?
-2
votes
1answer
38 views

Can't edit sudo nano /etc/apache2/apache2.conf in Apache on Mac terminal [closed]

I'm guessing this should be easy but I can't work anything out. I'm using terminal on my Mac (latest OS). I'm connecting to a web server and running this command: sudo nano /etc/apache2/apache2.conf ...
0
votes
2answers
30 views

Implicitly launch detached program (&) from terminal

I feel sure this will end up as a duplicate, but I don't know how to word it so that I can search for it... I like to do my programming in emacs, which I launch from the terminal. When I use my mac I ...

1 2 3 4 5 75