1
vote
2answers
24 views

What files does the mac terminal load first?

A while ago I installed a program called "j" for the terminal. It was supposed to make things simpler. However, after a while of using it I decided I didn't really need it and trashed it. Now ever ...
0
votes
1answer
17 views

iPython command not found Terminal OSX. Pip installed

Python is also installed 2.7. using homebrew. I then used pip to install iPython. So, iPython seems to be installed under: /usr/local/lib/python2.7/site-packages/ I think this is true because ...
1
vote
1answer
26 views

Why CURL return and error (23) Failed writing body?

It works ok as a single tool: curl "someURL" curl -o - "someURL" but it doesn't work in a pipeline: curl "someURL" | tr -d '\n' curl -o - "someURL" | tr -d '\n' it returns: (23) Failed writing ...
0
votes
1answer
34 views

Bash script to copy directory to multiple other directories

I have two directories, src and build. Within src I have a folder called core which is where all updates are made. Within build I have several folders with different names and each of those folders ...
0
votes
1answer
21 views

BASH: Read all files in a directory recursively, includinging symbolic links

I got this tidy script from someone: find ../Classes -name \*.cpp -print which simply loops a directory, and prints all files recursively. However, it doesn't follow symlinks. All I can find ...
2
votes
7answers
83 views

Why these simple shell commands fail when used in sed'd replacement

While trying to find an answer of this sed question I came up with a strange behavior that I couldn't understand. Let's say I have a file called data $> cat data foo.png abCd.png bar.png baZ.png ...
2
votes
1answer
41 views

ln complains about no such file or directory

I'm new in shell programming on macosx and have a little problem. I've written the following shell script: #!/bin/sh function createlink { source_file=$1 target_file="~/$source_file" if [[ -f ...
0
votes
1answer
27 views

bash script works in terminal, not as expected from Mutt (macro)

EDIT: Im not sure why it wasn't working before, but its working fine now. I added an & (to background the script)and <enter> at the end of the macro also, but it works with out it I ...
0
votes
1answer
15 views

Is there a way to set events to happen on wakup for a MAC?

When my Mac wakes up after sleeping, I would like it to perform a few bash commands. I know my .profile (or .bashrc) gets sourced when I log in to my environment, but is there a file that gets called ...
1
vote
2answers
62 views

When change $IFS in bash on Mac OS X

I met a problem when I change the value of $IFS in bash on Mac OS X. For example, I have a main directory /XXX/XXX/XXX, and two sub-directories subdir1 and subdir2. If I run the shell script ...
0
votes
1answer
21 views

Download multiple files, with different final names

OK, what I need is fairly simple. I want to download LOTS of different files (from a specific server), via cURL and would want to save each one of them as a specific new filename, on disk. Is there ...
-1
votes
2answers
34 views

Show git branch and status in Mac Bash

I use the Github for windows client.The shell with powershell is very nice! How do I implement it on MAC? Not only the branch name,I also want git status
1
vote
2answers
46 views

Bash if statement which saves variable to config file doesn't work

This is my code: alias radio=' if [ -e "$station" ] then open $station else say "I still don't know what your favorite radio station is sir. Would you mind giving me the link?" echo "What ...
1
vote
1answer
26 views

Bash + Replace string/value in column

File: /etc/newsyslog.conf I am trying to replace the 3rd column (the count column) of each line. It appears as though the first and second columns are separated by tabs. However, the second and ...
1
vote
0answers
23 views

Making checks before rsyncing external drive on OSX

I have the following issue on OSX though I guess this could equally be filed under bash. I have several encrypted portable drives that I use to sync an offsite data store or as an on-the-go data store ...
-2
votes
0answers
51 views

bash script to run two background tasks

I am trying to run two background task in terminal (I am using mac). For this I created a script: #!/bin/sh cd ~/myproj nodemon app.js & cd public bbb debug & But this isn't work.. Those ...
1
vote
2answers
46 views

Python shebang problems with importing modules (and choosing the correct interpreter)

I've googled and searched stack overflow for solutions, but I can't seem to find any way to fix this. Basically, this is my problem: I'm trying to use the Image/PIL Python module, which comes ...
2
votes
2answers
60 views

Bash on OSX: How to determine if network file (AFP) is in use?

I've got a bash script that runs on OSX. It needs to manipulate some files on a network-share (AFP share on a Synology NAS). Unfortunately those files are sometimes still being written when the ...
2
votes
2answers
64 views

Bash command substitution stdout+stderr redirect

Good day. I have a series of commands that I wanted to execute via a function so that I could get the exit code and perform console output accordingly. With that being said, I have two issues here: ...
1
vote
2answers
36 views

Java file limit on OSX lower than in bash

I've increased the max files limit on my macbook pro so that Elasticsearch can work with more files, but it isn't working. I run the command 'ulimit -a' and it says "open files" is 100,000. I can ...
0
votes
1answer
38 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 ...
0
votes
1answer
47 views

How do I pipe only certain results from a command to another or an If statement?

I am trying to find a way to build a cron job that will log out idle users in OSX based on the last time they actively moved the mouse. OSX's built in functionality logs out everyone and only if the ...
0
votes
1answer
28 views

shc on Mac showing 'Killed: 9' error

I'm using shc on Mac OS, to generate stripped binary of bash scripts, for distribution. The issue is, when i execute the stripped binary (with .x ext) it shows the error killed: 9. Even when i make ...
1
vote
2answers
32 views

Bash to refer to txt list to find data in directory and copy items

I have a text file with over 7000 lines of font names which are required by our design department. This list has been generated by software which has stripped out any file extensions. Some files ...
1
vote
1answer
65 views

Bash issues with osascript GUI commands

I am trying to automate the process of launching an application in OSX and typing an administrator password at a security agent prompt. I was hoping to avoid the use of AppleScript GUI scripting ...
0
votes
4answers
42 views

Using bash find how can I ignore all file extensions if present?

Say I have this in a directory: master3.txt master3 master3old anotherFile and I need to use find to return: master3.txt master3 Basically it means using find and ignoring file extensions if ...
0
votes
1answer
119 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
0answers
22 views

How to quickly add multiple routes on Mac OsX [migrated]

After connecting to OVPN, I need to add many routes (more than 3000). It can be done by sudo reoute add X.X.X.X/X X.X.X.X for each one rules, but it's really slow. Is there any other alternative ...
1
vote
3answers
34 views

Bash cannot create file

So I'm trying to create a file in bash but I get a strange error, here is my code: touch > "application/views/scripts/"$theFile"/"awk '{tolower($theFile".phtml")}' Error: ./zf.sh: line 16: ...
0
votes
1answer
29 views

Wallbase script error file cookies not found and sed error

I am trying to use the following script : https://github.com/sevensins/Wallbase-Downloader for wallpapers but I got the following errors : Cannot open cookies file ‘cookies.txt’: No such file or ...
0
votes
3answers
53 views

Launching program several times

I am using Mac Os. This is command line code to lauch my programm (two parts) nucmer --mum file1.txt file2.txt show-snps -Clr -x 2 out.delta > out_file1.snps First part of the programm creates ...
0
votes
1answer
46 views

Create file in bash + write content to it

So I want to create a bash script, I know how to create the file but I don't know how to write to that new file.I want to write some php code to that file. Can you guys give me some examples? The ...
0
votes
1answer
38 views

Bash shell is “clearing” a variable after while loop, how to get all files in a folder inside a variable?

I'm trying to list all files in a folder and add them to a variable, separated by a semicolon. Then I need to echo the variable in a file. This is my snippet #!/bin/bash SEP=";" LIB="lib/" DEP="" ls ...
0
votes
2answers
95 views

Path, /usr/bin/ and /usr/local/bin/

I installed watchr on OS X (10.8.3) using gem install watchr. And it's installed in /usr/bin/watchr $ which watchr /usr/bin/watchr However, when I tried to call it $ watchr -v, the system couldn't ...
0
votes
2answers
56 views

Bash: reading files and moving into sub-directory

I have around 1000 files (png) and need to move them into the corresponding directory and their sub-directory. I do have 26 directories (A - Z) and below each directory the complete alphabet A-Z ...
0
votes
3answers
69 views

Apache “LoadModule passenger_module” works when “apachectl -k start” is invoked from bin directory, but not with bash script

I'm using mac OS 1.8.3 RVM 1.19.6 Ruby ruby 1.9.3p327 Apache 2.4 Phusion Passenger 3.0.19 After an error free install of Apache I launched the server and it worked. I wrote a ...
1
vote
4answers
57 views

Read string into a variable until a certain word in BASH

I have a program that outputs something like this: stuff=Some text with spaces and other $pecial characters stuff2=1 stuff3=0 I am trying to get all of that string up until stuff2=1 in a variable, ...
0
votes
5answers
114 views

bash create dir with sequential numbers

I am creating a script to run on OS X which will be run often by a novice user, and so want to protect a directory structure by creating a fresh one each time with an n+1 over the last: target001 ...
0
votes
1answer
27 views

Bash if condition

I'd like to write a bash script that looks at security list-keychains to see if there is a keychain named appledev. If there is not a keychain I'd like to create it with this security create-keychain ...
0
votes
2answers
54 views

Finding Prime Numbers - “factor” command not found

I am writing a bash script to find all of the prime numbers less than a given integer. Here is the code: #!/bin/bash BADARGS=65 if [ -z $1 ] then echo "Usage:`basename $0` cannot have a null ...
0
votes
1answer
50 views

Why won't my bash script read numbers from the command line? [closed]

I am using MacOS to run this bash script: #!/bin/bash BADARGS=65 if [ -z $1 ] then echo "Usage:`basename $0` first-number second-number..." exit $BADARGS fi for number in $@ do echo ...
0
votes
2answers
52 views

Set environment variable for the process before startup

I have the following situation: I have Mac OS bundle with application which uses some 3rd party dynamic libraries and those libraries depend on some environment variable, let's name it ENV_VAR. I ...
1
vote
1answer
74 views

Building android apk with ant under MacOS X and “Application not installed”

I have a bash script that basically calls ant to compile a Android application source tree, and then uses adb to install and start the application on a connected android device. The bash script has ...
0
votes
1answer
31 views

Redoing links in bash terminal

So I just installed emacs version 24 on OS X 10.8 by means of brew package manager, it installed in /usr/local/Cellar/emacs. I regularly use the builtin version of emacs version 22, but its in ...
-1
votes
1answer
69 views

Illegal instruction when running programs from bash [closed]

I have a suite of C++ based programs that I created and compile on Mac 10.8.3. They work just fine on 10.8.* Macs, but when I try to run them on 10.6.* I get the following message, "Illegal ...
0
votes
1answer
37 views

Bash script on OSX that switches between root and user

I'm attempting to write a script that, among other things, installs rvm. In order to do this the script is run as root (sudo setup.sh) where setup.sh calls a subscript that installs rvm. However, in ...
0
votes
1answer
33 views

Bash eating stderr output

I'm calling a command line tool we wrote from bash on OS X and I have the problem that I don't get the stderr output but only printf's written to stdout. That's my call: echo "someInputString" ...
0
votes
1answer
83 views

Setting a launch variable with AppleScript in Automator

I'm trying to set a variable using AppleScript from automator: do shell script "launchctl setenv LASTMAX \"" & today & "\"" I have a variable today that i want to assign to the variable ...
1
vote
2answers
107 views

Mount command failing on 10.7.5

I have a shell script that mounts an smb share. It works perfectly on all macs with every OS revision except 10.7.5 The offending command is simply: mount -t smbfs -o nobrowse ...
6
votes
3answers
102 views

How does Terminal read from stdout and draw the text on-screen?

I have a general question about how the terminal and processes work. From any process, if I write to stdout (i.e. file descriptor 2), it gets drawn on the terminal window. My question is, how is this ...

1 2 3 4 5 15