0
votes
1answer
10 views

Use `pbcopy` as path for cd command

I am using Automator on my Mac to set up a service that passes a selected folder to a bash shell script as arguments. In the script I do: for f in "$@"; do printf "%q\n" "$f" | pbcopy done if I ...
0
votes
1answer
20 views

How do I get the unix terminal to say how many files are left to run, and which file it is working on?

I have a shell script that is sending in about 150 files to a python program I wrote. I have no idea how long it is going to take, so I was wondering if there was a terminal command to either: a) ...
-3
votes
1answer
22 views

Why do we have max. 256 colors in terminal emulators? [closed]

I was just fiddling around with a 256 color VIM theme and noticed that 256 colors are just not enough sometimes. I would love a terminal that supports at least the HTML color range from #000000 to ...
1
vote
1answer
25 views

Pasting long lines into Mac OS X Terminal

When I paste a long string (ie, more characters than the width of the terminal window), the terminal doesn't autoscroll and put them in multiple lines. Instead, it basically wraps onto the same ...
-1
votes
0answers
23 views

Close a specific Chrome tab in Ubuntu/Linux using terminal command [migrated]

Is there a way to close a specific Chrome tab with a terminal command? I tried below commands: kill -9 <pid of Chrome tab>: Instead of closing a tab, it kills the tab ("He's dead Jim" message ...
-1
votes
0answers
32 views

iOS and calling Terminal Commandos with IBAction [closed]

NSTask is available for MacOSX, only, right? I want to create an iOS App with some UIButtons calling a terminal command. Which framework should I use for a non jailbroken device ;-) EDIT: Maybe Im ...
0
votes
1answer
13 views

Can I assign the “New Window” hotkey in Mac OSX to a particular theme?

In the Mac OSX Terminal app, I want to press command-N and get a new window with the Homebrew theme. I have edited my preferences so that on startup of the Terminal app I get a Hombrew-themed window, ...
0
votes
1answer
32 views

not found error when insert #!/bin/sh

I started learning Linux shell scripting, when I was writing this script I got an error, ./my_script: 4: read: Illegal option -n ./my_script: 5: ./my_script: [[: not found I found out its because ...
1
vote
3answers
48 views

`for f in *; do cp “$f” “$f”_copy; done` doesn't work because “foo.png_copy”. How to fix it?

On Linux, the command: for f in *; do cp "$f" "$f"_copy; done doesn't work as expected because the "_copy" string is appended after the file extension, becoming foo.png_copy instead of ...
0
votes
3answers
35 views

Get all html files in directory through terminal that don't have explicit extension

I need to get all the .html files in a folder through the terminal or MATLAB, but the catch is that these .html files don't have an .html extension explicitly in the files. In this case, I'm also ...
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
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
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?
-1
votes
0answers
40 views

Writing web terminal emulator as java servlet [closed]

The question is vague but maybe I can get good recommendation. I want to write terminal emulator interfaced by a browser. As server side I plan to use Java. So here is one question, what is better to ...
1
vote
0answers
50 views

How to pipe a variable as password in a bash script when requiring root access [duplicate]

I'm trying to make a shell script which asks the user in the beginning for a password and then stores it in a variable so it may be used each time the script requires root access. My thought was to ...
0
votes
1answer
26 views

How to print Linux command On terminal

At the time executing following command i get output as i-56816733 str=$" $(wget -q -O- http://169.254.169.254/latest/meta-data/instance-id)" echo $str But i want to print the whole command present ...
0
votes
1answer
42 views

Missing results with mdfind

I have a certain set of PDFs downloaded from a free library that I'd like to search, from time-to time. For that, I'd like to use a shell script, that performs an 'mdfind' command. Since I've got a ...
-1
votes
1answer
24 views

Rename detailed information before $ in Terminal [closed]

I am using Terminal(Mac) for git. When I use it shows mySystemName-MacBook-Pro:CurrentWorkingDir mySystemName before $ sign. In my case the whole content is too long and hardly remains few space to ...
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
1answer
53 views

Run Multiple Shell Scripts From One Shell Script

Heres what I'm trying to do. I have 4 shell scripts. Script 1 needs to be run first, then 2, then 3, then 4, and they must be run in that order. Script 1 needs to be running (and waiting in the ...
0
votes
0answers
80 views

Unable to change shell from bash to fish

I just downloaded and installed fish and I want to use that as my default shell, but for some reason, I am not able to change the default shell from bash to fish. I have tried the following: sudo ...
2
votes
1answer
51 views

Zsh tab completion: Is there any plugin or feature that can allow for a MRU tab-completion scheme?

I find myself doing stuff like typing the last part of a command name because the beginning of it gets completed with other commands. Of course most other shells can't even complete stuff in this way ...
-2
votes
0answers
33 views

Node JS shell command issue in MAC? [closed]

I am running a shell script from node js. The shell script is giving error. But the same shell script is running fine from the terminal window. What may the reasons for the issue??.
2
votes
2answers
48 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 ...
1
vote
1answer
40 views

force git status to output color on the terminal (inside a script)

I like to see color because my scripting is robust enough (so far) to handle the color codes. It does seem like I'm going against the grain here, but I honestly don't see what the big deal is about ...
0
votes
0answers
64 views

Aptana Studio Python shell?

I have Python and aptana studio installed on my Mac. I am able to run my python code. However, there are times where I need to run the python shell script. How do I open and run the python shell with ...
0
votes
1answer
31 views

How to copy & paste text from sourcefile to new file(only the nums)?

I need your help please, I want to copy only the nums in source file to new file(terminal code). the source file look like this: <name> <family> <ID> john mark 323243434 kelly ...
1
vote
1answer
25 views

Can't pause nano in terminal

Trying to learn how to use terminal here. So I can use ctrl-z to pause other processes, but for some reason it does not work in nano. Why that would be?
0
votes
1answer
65 views

Sending output to tty is not producing expected results [duplicate]

I'm clearly not expecting the right results. $ man less In another terminal: $ ps u # Find that pid of less is 45783 $ lsof -p 45783 COMMAND PID USER FD TYPE DEVICE SIZE/OFF ...
0
votes
2answers
55 views

Mac installing libraries using the terminal

I have researched this and found answers on SO on this topic yet remain confused. Trying to get started with Git. I'm new to shell scripting too so hopefully after this I'll be more familiar with it. ...
1
vote
0answers
35 views

Lightweight event wrapper for the terminal

I believe this is the realm of the ncurses library. I'm trying to avoid having to get down and dirty with it though. I'm looking for a program that I can configure to run a command while performing ...
1
vote
1answer
65 views

Control a pager (like the less program) from an extenal (parent) script

In this question I am exploring how to go about monitoring my project directory for changes so that I can keep a terminal that shows an always up-to-date git diff so that I can skip typing git diff ...
1
vote
1answer
184 views

Github error: src refspec BRANCHNAME does not match any

I forked a repo on GitHub. Created a new branch from website (named "anythingslider"). Then: cd /home/multiformeingegno git clone git@github.com:multiformeingegno/cdnjs.git Enter passphrase for key ...
0
votes
1answer
49 views

how to remove all subfolders except ones with foldername X using Terminal [closed]

What is the best way to remove all subfolders except ones with folder name X and Y using Terminal.
1
vote
2answers
33 views

How can I trigger a url from the terminal

Ok, I know this is one odd question, how can I run a html url from the terminal? Let me explain... I have a shell script that is using the an api to update a record in a database, looks something ...
-1
votes
1answer
245 views

jailbroken ipad, terminal use of a legit app-store app, and shell scripting [closed]

I have a little issue. I wish to invoke a legitimate, “Apple Approved” app (specifically “BoxCryptor”) via a command line on my Jailbroken iPad. I believe I have found the directory in which the ...
0
votes
0answers
26 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 ...
2
votes
4answers
155 views

“sort filename | uniq” does not work on large files

I can remove duplicate entries from small text files, but not large text files. I have a file that's 4MB. The beginning of the file looks like this: aa aah aahed aahed aahing aahing aahs aahs aal ...
0
votes
1answer
148 views

Cygwin Terminal: FTP Connection (Password Input doesn't end)

I'm using Cygwin shell to try to establish a TCP connection with a specific IP address. After typing "ftp 'the ip address'" I get prompted for the username/password. When I enter the username and ...
0
votes
1answer
37 views

Prevent terminal prompt from printing on exec() call

SO, There are many similar questions, however none that I have been able to use. My code snippet is as follows: for(int j=0; j<N; j++) { pid_t pid = fork(); if (pid == -1) { ...
0
votes
1answer
75 views

mac terminal error not a valid identifier while running NDK

I am trying to run these commands in my mac terminal but it gives error bashrc is not a valid identifier every time i run these commands. NDK_HOME=/path/to/your/ndk_installation export ...
0
votes
1answer
26 views

Use shell output for error handling for condor

I need to submit multiple simulations to condor (multi-client execution grid) using shell and since this may take a while, I decided to write a shell script to do it for me. I am very new to shell ...
0
votes
1answer
20 views

how do you call shell scripts from an arbitrary directory?

I am setting up a shell script to run with cron, but i have an issue getting to the file. When using cron, i can run 1 thing, it was the line: php /home/testfile.php >> /home/logFile.txt but ...
0
votes
1answer
52 views

Any bash/rails plugin to autocomplete/suggest migration versions?

Every time I have to run/redo a particular migration in my rails app, I have to go through the following steps to obtain the exact version number: grep - Search the files in the db/migrate folder ...
0
votes
2answers
66 views

Echo before the output of the awk command

I need to know how to add this line before each output of the awk commands. I also need to add how much disk space has been used by the user in their home directory. I have no idea how to combine them ...
1
vote
2answers
144 views

Terminal: Where is the shell start-up file?

I'm following a tutorial called Starting a Django 1.4 Project the Right Way, which gives directions on how to use virtualenv and virtualenvwrapper, among other things. There's a section that reads: ...
3
votes
1answer
187 views

ANSI questions: “\x1B[?25h” and “\x1BE”

What does "\x1B[?25h" do? How is "\x1BE" different from "\n"? According to http://ascii-table.com/ansi-escape-sequences-vt-100.php it "moves to next line"? Seems like that's what "\n" does? I tried ...
0
votes
1answer
77 views

Bash : space in path access

I tried to access a specific path with a bash script but my terminal won't access to it. Here's my very simple script : #!/bin/bash init() { cd $PATH ls -l } PATH="/Volumes/Macintosh ...

1 2 3 4 5 7