Tagged Questions
0
votes
1answer
10 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 ...
1
vote
2answers
53 views
Input in the same line of the message (terminal)
Is there an Syntax that allows me to read the input from the user in the same line of the System.out.println() line?
Example:
What is your name?:(<-- Output) Jack (<-- Input from user in ...
2
votes
0answers
42 views
Place contents of last command line output into clipboard [migrated]
I want to be able to run a command in my Terminal, and then quickly be able to copy the contents of the output into my clipboard without leaving my keyboard. Is there any way to do this?
0
votes
1answer
20 views
Assertion failed when fruitstrap after ./fruitstrap -d -b
I am trying to launch my app on a device. After I type in ./fruitstrap -d -b it seems like it'll work, but after this line:
[ 11%] Copying /Users/"user_name"/"repo"/build/Debug-iphonesimulator to ...
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
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 ...
0
votes
0answers
34 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
1answer
5 views
How can a view a live logfile with terminal?
Basically, mongodb (an open source sql-less database) logs its outputs in a log file known as var/log/mongodb.log
Is there anyway I can view this log file live in terminal without typing 'sudo nano' ...
0
votes
0answers
36 views
Can't see my whole output in terminal
I am running a program in code blocks,i have a very big output and i can't see the start of my output.I scrolled to the top and it goes only to the middle of my output.How can i see the start of my ...
0
votes
2answers
94 views
What is required in C++ to compile -std=c++0x? [duplicate]
I downloaded my program from my schools server to work on it offline. I have GNU installed but when I try to compile it on my Mac using my makefile and I get this error:
cc1plus: error: unrecognized ...
0
votes
2answers
61 views
head command to skip last few lines of file on MAC OSX
I want to output all lines of a file, but skip last 4, on Terminal.
As per UNIX man page following could be a solution.
head -n -4 main.m
MAN Page:
-n, --lines=[-]N
print the first ...
0
votes
0answers
45 views
django-admin.py will not cooperate
I am new to Django and just trying to get it to start up. I downloaded it and it is on my path:
Ryans-MacBook-Pro:website ryansaxe$ python django-admin.py startproject mysite
python: cant open file ...
0
votes
0answers
11 views
How to access AT commands and turn device to modem-only mode [migrated]
I am using mac and I am having problems getting my dongle to work. I want to get my 3g dongle (Huawei E 1550) working on my android tablet.
I need access AT commands and turn device to modem-only ...
2
votes
2answers
46 views
save terminal command to file that runs command in terminal when opened
I have a series of commands that I run in terminal and I am wondering how I can store those commands in a file and of what file type so that on open of that file, in terminal, the commands run?
But ...
-5
votes
1answer
44 views
Break string into command and arguments in C [closed]
Does anyone know where I can find code to break a C style string into a command and arguments like the compiler does for int main()?
Edit: I need it to acknowledge quotes as well
-1
votes
1answer
308 views
Sed Command get text between two string while excluding the two strings using Terminal UNIX
So I have a sed command that looks like this:
sed -n "/DXImageTransform.Microsoft.AlphaImageLoader(src='/,/',sizingMethod='crop');/p"
/Users/ME/Documents/weather/yahooWeather.html > ...
2
votes
1answer
92 views
How to feed my C Program in Terminal files for it to sequentially display?
I have created a program that sequentially displays on screen the contents of all of the files listed in the command line.
However, when I run it in terminal I can't actually get it to open any files ...
0
votes
1answer
21 views
Grep for hard drive id on OS X?
OS X 10.8.2
I want to find out what /dev/disks* is for the mountpoint /
So I run $ df -lak /
and I get:
Filesystem 1024-blocks Used Available Capacity iused ifree %iused Mounted on
...
1
vote
3answers
67 views
Bash script - find directory, and do something in it. Or find a file, and do something with it
This is what I have so far:
for f in 'svn ls repository_dir';
do
svn checkout repository_dir/$f/trunk/dir1/dir2/dir3/dir4/needed_dir
done
This works great for the projects (100's of them) that ...
3
votes
3answers
95 views
Java command line exit command?
I'm making a server, and it is on a Text Based Raspberry Pi. basically, everything is running from the command line, so when the server runs, there is no graphics, and it prints everything out using ...
0
votes
1answer
62 views
Stop listening for node.js
When I do:
node server.js
Then my terminal (osx) starts to listen for messages like errors and logs from the node app.
How can I start node without listening?
How can I stop listening ...
1
vote
1answer
394 views
Xcode Command Line Tool (XCode 4.6) Run Unit Tests from terminal
after many attempts, I didn't figure how I can run unit tests by terminal with a project that is inside a workspace. I tried to create a new Scheme and run that script which builds but doesn't run any ...
0
votes
1answer
130 views
Open file Office doc on a url through command line (Mac)
I am trying to build a Java applet that will automatically load an Office file from a url and open it with the right desktop application on Mac Os.
For the moment, I am looking for the command line ...
1
vote
1answer
110 views
Android Emulator - Command Line Building
Back again on Stack needing help from fellow Android Developers. In my development environment im using a lot of command line building and management. Currently im running into a issue where the ...
0
votes
2answers
83 views
how to break out of the loop if the boolean condition is false
Hi guys the problem i am trying to solve is that the while loop will work in both cases even if you type no and the second problem echo would you like to carry on if i type yes it will break out in ...
1
vote
2answers
72 views
How to compare Strings in BASH scripting?
I just want to know how to read a String and then compare it. If it is "Plus", then carry on
#!/bin/bash
echo -n Enter the First Number:
read num
echo -n Please type plus:
read opr
if [ $num ...
-5
votes
2answers
46 views
PHP debuging printing into command line [closed]
I have a php server, and I want to create a function that will receive a variable
and will print it into a terminal/command line that will be open at the same time.
Any idea how it can be done?
Linux ...
-1
votes
1answer
81 views
Algorithm to read and write command line string
I'm trying to write a program that can read a command string and validate it (get the name of the command and it's arguments), change those arguments and then rewrite the command string dynamically.
...
2
votes
1answer
136 views
Syntax highlighting at command line as I type [closed]
I'm looking for a way to have command-line syntax highlighting similar to what is available in, for example, vim. I'm working on a Linux box through PuTTY and do a lot of one-line bash coding (e.g. ...
0
votes
1answer
92 views
Trying to undersand how I can pass arguments from gradle to my shell script?
I'm trying to pass command line arguments to my shell script through a gradle task myconfiguration is like this below.
task dosomething(type:Exec) {
workingDir 'dir'
executable 'sh'
args ...
0
votes
0answers
197 views
Trigger key bindings from the command line - Mac OSX 10.8.2
I have a shell script that creates a new site template and opens the IDE window and the browser:
function site(){
if [ ! -d /Users/matanya/Sites/$1 ]
then
git clone ...
1
vote
1answer
109 views
.gitignore doing nothing
My .gitignore file seems to be doing absolutely nothing at the moment. I'm sure I'm missing something obvious, though.
File structure (in my build folder):
.git
.gitignore
index.php
wordpress
...
0
votes
1answer
182 views
How can I get the timestamp of each command line in my terminal history?
I would like to know how long a command that I entered into my terminal has been running. It would be great to be able to get the timestamp of every command in my history. Let me know if you need any ...
0
votes
0answers
46 views
Terminal login-credentials to heroku with bash-scrip?
I'm trying to write a bash script that logs in and creates some stuff on Heroku. Now I have to supply username and password every time. Is it possible to do this automatically, either with some ...
2
votes
1answer
80 views
Terminal command to find unique pairs where order does not matter
I have a Python script my_script.py which generates a list of tab-separated pairings between two elements, one for each line:
$ python my_script.py
cat dog
dog wolf
cat dog
pig chicken
dog cat
I ...
7
votes
3answers
195 views
“Conditional” parsing of command-line arguments
Say I have an executable (running on mac, win, and linux)
a.out [-a] [-b] [-r -i <file> -o <file> -t <double> -n <int> ]
where an argument in [ ] means that it is optional. ...
0
votes
5answers
128 views
Create bash script that takes input
I want to create a bash script that is simular to a programming interpreter like mongo, node, redis-cli, mysql, etc.
I want to be able to use a command like test and it behave like the examples ...
2
votes
1answer
46 views
Jekyll command runs in every new Terminal window
When I open up a new Terminal window or tab Jekyll automatically tries to build a site in the current directory. For obvious reasons I have uninstalled the Jekyll gem so that this does not mess up any ...
1
vote
1answer
1k views
How to stop (and restart) the Rails Server?
I'm following the instructions here http://railsinstaller.org/mac to get up and running with Rails on a Mac running OS X 10.8.2
At step 8 I'm asked to restart Rails server but how?
I'm assuming via ...
0
votes
1answer
78 views
How to remove a group of same extension files in different folders
I want to remove a group of same extension files with different file name in different folders from my pen drive, I tried with the following commend, but its not working.
$sudo find ...
1
vote
1answer
198 views
How to run Vim commands from Terminal
My questions is one that I haven't seen answered, the usual question is how to run certain commands to a file.
My question is how to run Vim commands or functions, from outside Vim (i.e. Terminal), ...
1
vote
1answer
37 views
Is it possible to generate glyphs for the Linux terminal on the fly? [closed]
For example, Impulse Tracker for DOS was a nice music production app that was among the first to create a smooth mouse using glyphs generated on the fly in the characters located near the current ...
2
votes
1answer
167 views
debugfs command not found
When I try to use debugfs on my Macbook pro(10.6.8) I get
-bash: debugfs: command not found
Then I try to look at my path
echo $PATH
I get
...
0
votes
1answer
350 views
Find and replace in text file with terminal. How to escape all the characters?
I'm trying to use the terminal to replace some html code in a file.
This is the command I'm using
perl -pi -w -e 's/find/replace/g;' /Volumes/Abc.html
I'm trying to replace
<body>
with
...
0
votes
1answer
339 views
How to install latest ffmpeg on mac
I am using this command
sudo port install ffmpeg +gpl +postproc +lame +theora +libogg +vorbis +xvid +x264 +a52 +faac +faad +dts +nonfree
But the installed version of ffmpeg I get is only 0.7.13.
I ...
0
votes
0answers
114 views
Parsing terminal output Mac Objective-C
How would I parse an output like this:
PrimaryGroupID: 20
RealName:
Johnny Smith
RecordName: johnny
RecordType: dsRecTypeStandard:Users
UniqueID: 501
UserShell: /bin/bash
From this command:
dscl ...
5
votes
1answer
240 views
Add all unversioned files to SVN, @2x included
I use this to add all unversioned files to SVN:
svn status |grep '\?' |awk '{print $2}'| xargs svn add
However it doesn't include files with an "@2x" suffix.
How would I modify the line above to ...
1
vote
1answer
167 views
JIRA home config
I am having a few issues configuring JIRA (Mac OSX 10.6.8), specifically setting my JIRA home directory. I ran the JIRA configuration tool, and defined my path. Upon running JIRA on my localhost, I ...
1
vote
1answer
370 views
Launch dscutil in Objective-C
How would I use dscl in Objective-C and obtain its output? The command I want to pass as if it is in Terminal is:
dscl . -readall /Users UniqueID | awk '/^RecordName:/ {name=$2}; /^UniqueID: / {if ...




