0
votes
1answer
12 views

Gegl color-to-alpha does not remove the white color like GIMP does

Color to Alpha The color-to-alpha operation is when a color is taken from all the pixels in the image and converted to transparent, this is especially useful to extract hand written or free drawing ...
0
votes
2answers
51 views

Macxchange Script to Change MAC and Hostname in ubuntu 12.04

I'm trying to adapt a script in backtrack to work with ubuntu. I keep getting an error on line 14 which is the "if [ $? == 0 ]; then" line the script was found on ...
1
vote
4answers
56 views

Passing variables into awk from bash

I am writing a shell script file in which I have to print certain columns of a file. So I try to use awk. The column numbers are calculated in the script. Nprop is a variable in a for loop, that ...
1
vote
1answer
40 views

Trying to delete all but most recent 2 files in sub directories

I'm creating a cron that cleans subdirectories (first child only) of a specified folder of all but the most recent two files but running into issues. These are my attempts: find ./ -type d -exec rm ...
0
votes
1answer
51 views

Running Mount Script at Ubuntu Startup

I have this script to automount my BoxCryptor folder (Dropbox encryption) in Ubuntu. Everything works fine when I run it from the command line, but...when I place this in my "Startup Applications" it ...
3
votes
1answer
81 views

Bash: Both date “%b” and date “%h” (and of course) date “%B” gives full name of month?

I am writing a shell-script in Ubuntu server 12.04 which is supposed to compare some data in a log file. In the log file, the date is given in the format: [Mon Apr 08 15:02:54 2013] As you can see, ...
0
votes
1answer
55 views

basename command not working as expected

I wrote a shell script to convert a lot of JPGs at my end to pdf #!/bin/bash set -xv for i in `ls -v *.JPG`; do i=$(basename "$i") convert "$i" "$i.pdf" ; done the JPGs are DSCN2612.JPG ...
0
votes
0answers
145 views

Restarting dropbox-daemon if running

I have a couple of encrypted drives that I mount manually with a script after start. One of those drives hosts my dropbox folder. I need to check if dropbox is running when mounting the drive so that ...
0
votes
2answers
91 views

Bash: declare, assign value to a variable and call it inside a loop

I am trying to declare, assign value and call variables inside a loop that runs a user defined amount of times. I would like these variables to be available after the loop. What I am trying to do is: ...
1
vote
3answers
97 views

bash: loop through procces output and terminate the process

I need some help with the following: I use linux to script commands sent to a device. I need to submit a grep logcat command to the device and then iterate its output as it is being generated and ...
-1
votes
4answers
121 views

Disable terminal commands [closed]

I want to disable the use of rm except in certain circumstances. I wrote a function called remove in a .sh file and it goes though certain checks that I wanted to impose before actually calling rm. ...
0
votes
1answer
70 views

Check if argument is a file or directory

I am trying to check if an argument is a directory or a file. I want to put a / after each directory name and a * after every executable file. I know ls uses -F to get this information but I can't ...
0
votes
0answers
80 views

Show Ubuntu Unity's Laucher through command line

How can I show Ubuntu Unity's Launcher panel through terminal? I'm trying to bind a mouse button to this, showing the launcher. By "launcher" I mean the vertical panel with the "Home button". I would ...
0
votes
2answers
1k views

Working With Hadoop: localhost: Error: JAVA_HOME is not set

I'm working with Ubuntu 12.04 LTS. I'm going through the hadoop quickstart manual to make a pseudo-distributed operation. It seems simple and straightforward (easy!). However, when I try to run ...
2
votes
3answers
184 views

Bash script “read” not pausing for user input when executed from SSH shell

I'm new to Bash scripting, so please be gentle. I'm connected to a Ubuntu server via SSH (PuTTY) and when I run this command, I expect the bash script that downloads and executes to allow user ...
2
votes
1answer
99 views

tab-expansion and “./” bash shell [closed]

Maybe someone here would be able to help me out. Have installed Ubuntu 12.04 LTS (kubuntu) on two machines. The .bashrc and .bash_profile files are identical as the file structures on each machine is ...
2
votes
1answer
319 views

Using curly brackets for variable expansion in makefile doesn't work

When I run below command on shell, it works properly. but if I write it in a Makefile and call it with "make" command it doesn't work. cp wpa_{cli,supplicant,passphrase,event} /usr/local/bin/ ...
1
vote
3answers
47 views

How to interpret this output generated by make command?

On running make command, I get the following output, g++ -DUNIX -Wall -g -I../include -I. main.o hfpage.o hfp_driver.o test_driver.o db.o new_error.o page.o system_defs.o buf.o ...
0
votes
1answer
117 views

Append operator in bash shell

While running a bash shell script which contains this command: iperf -c $server_ip -p $iperf_port -t $iperf_duration >> outputfile the output is many times displayed on console rather than ...
0
votes
2answers
484 views

Ubuntu BASH syntax error near unexpected token

I'm following this tutorial http://ubuntuforums.org/showthread.php?t=1550470 to install a GUI for Phorinix test suite installing it on Ubuntu 12.04. I already have the test suite and PHP5 installed, ...
2
votes
4answers
112 views

echo “#!” fails, why?

The following fails and I don't understand why: $ echo "#!" the following also fails with the same error message: $ echo "\#!" the error message: -bash: !": event not found Why does it fail? ...
1
vote
1answer
162 views

Parallel tasks don't work on Ubuntu 12.04 in VM Workstation

Something weird is happening in my Virtual Machine which runs Ubuntu 12.04. The following script, that I successfully used before to run 7 tasks on 7 cores together, doesn't work properly anymore! ...
0
votes
1answer
777 views

Bash multiline echo

I tried to create a script to list the contents of a directory: #!/bin/bash matched=$(ls -1 /data/ | grep $1) echo $matched I have added the parameter -1 to the ls command and when executed like ...
0
votes
2answers
3k views

bash issue installing rvm on ubuntu 12.04 LTS

I am completely new to Linux and am having trouble installing rvm. From https://rvm.io/rvm/install/, I run $ curl -L get.rvm.io | bash -s stable --ruby in terminal. I receive the following error: ...