0
votes
2answers
19 views

Multiple Conditionals and globbing in Bash

So have I got this right? In Bash, I can use globbing to test strings for patterns if I use double-brackets around the condition: if [[ $var = abc* ]] and I can test for multiple conditions if I ...
1
vote
2answers
54 views

awk script to process 400 .txt files

I have a nice .awk script that takes the 2nd $2 value and prints it. Because the data in the .txt files only go down 8192 lines, any lines after that are irrelevant (the script takes care of that.) I ...
0
votes
0answers
13 views

Embedded shell script with RCP app

I have an RCP application packaged by a PDE build. Also in this application in one of the plugins I have a directory called "scripts" with shell scripts that I want to run. Everything works ok if I ...
1
vote
0answers
26 views

Including password in script on Debian [closed]

I have set up a server for testing and playing around with. To make it sort of more secure I want to add an incredible long root password (One of many steps to secure the server). To login to root ...
0
votes
3answers
29 views

script to compress user files via searching through folders for certain folder name

I'm writing a function for one of my programs that will need to search through a number of folders until we find a folder called "userfiles" then we tar up this folder giving the filename of the ...
1
vote
3answers
38 views

Whats the windows equivalent of this simple bash string manipulation?

I'm once again, wishing I could use bash while trying to do some windows batch stuff. What's a short, windows batch equivalent of this Bash expression? $ var="EIPADDRESS=192.168.20.139"; ...
0
votes
2answers
31 views

php exec() works on some calls, not other similar ones

I have a php script that cuts up video. Here are three exec() commands - two execute properly while one does not: Works: sudo ffmpeg -i /home/vidserver/videos/$filename.mp4 -ss $ctime -t 00:00:06 ...
0
votes
2answers
34 views

Scroll linux shell script output without piping

I have a linux bash script.sh. I can easily scroll the output like this: $ ./script.sh | less But how do I make the output display scrollable automatically, without having to pipe it through ...
0
votes
3answers
51 views

Shell Script to replace multiple instances of unix timestamps in a file

I have a file which has data similar to the following: > <Element > Stream="12" > Target_trans="133106" > Trans="48467" > fileModTime="1358349304" ...
0
votes
2answers
42 views

Finding multiple files recursively and renaming in linux

I am having files like a_dbg.txt, b_dbg.txt ... in a Suse 10 system. I want to write a bash shell script which should rename this file by removing "_dbg" from all files. Google suggested me to use ...
1
vote
2answers
34 views

variable does not store value while running script from root (unix)

Output variable does not store value of "pbrun tsm_support.ksh -c $i" command while running this script though root. #!/bin/bash set -x for i in `cat /home/unixlist.txt` do output=$(pbrun ...
0
votes
2answers
52 views

UNIX newbie: shell script not running, command not found

I am very, very new to UNIX programming (running on MacOSX Mountain Lion via Terminal). I've been learning the basics from a bioinformatics and molecular methods course (we've had two classes) where ...
1
vote
2answers
28 views

bash: script that allows user to change directory based on ouput from another program

Background: This question is about using the cd command in a bash script or alias. There is a related SO question here: Why doesn't "cd" work in a bash shell script? Problem: Suppose ...
0
votes
1answer
36 views

Using special “replace” characters in a bash script

I want to use the !!, !$,^abc^cde, etc. aliases in a bash script. Sadly, I cant seem to make them work in a script (They work just fine in interactive mode), Does anybody know what the problem is? If ...
2
votes
0answers
51 views

mount -t ntfs-3g /dev/sda1 /mnt/crypto/ -oencryption=aes-256 [closed]

I am trying to dabble in some bash shell scripting and have a normal function I would like to automate, if possible. The scenario is as follows: I have an external hard drive with aes 256 ...
1
vote
1answer
50 views

CSV Column Counts via Command Line Alias

I have a Bash scripting question that's no longer important to me but has still been driving me crazy because I can't figure it out. I was trying to compare column counts of CSV files via the command ...
0
votes
1answer
32 views

Nested pipe output in function

I am trying to make a script that will output system information using several functions that call each other. Can someone tell me what's wrong with how the piped commands' I/O is handled? ...
0
votes
2answers
48 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 ...
0
votes
4answers
42 views

Combining and multiple files and organizing based on column data in bash

I'm trying to combine 115 files from a single directory together. Here is an example of what the files look like: FILE ONE Phenotype Marker Value1 Value2 Value3 P1 1:54390 ...
0
votes
2answers
42 views

Bash substring from position not printing

I am using the following format #{string:start:length} to extract the file name from wget's .listing file, line by line. The format for the file is something I think we are all familiar with: ...
-1
votes
0answers
21 views

remove duplication from debian maintainer scripts

my project builds 3 separate packages, and with each having 4 maintainer scripts there's a great deal of duplication - both code (functions implementation) and values. the question is - how do i ...
1
vote
4answers
46 views

Removing a newline character at the end of a file

I know to remove all newlines you could, say: tr -d '\n' < days.txt cat days.txt | tr -d '\n' but how would you use tr to remove just the newline at the end/bottom of a textfile? I'm ...
0
votes
2answers
40 views

Including sub-parameters in help options to execute wisely?

I am writing a script which can choose a file and print specific content. For example, san#./script.sh Expected Usage : ./script.sh --file1 --dns (Here it checks for file1, search for dns name and ...
2
votes
4answers
39 views

Bash: Find number in strings and add them

I have a text file title 'results' and it contains [ PASSED ] 11 tests. [ PASSED ] 590 tests. [ PASSED ] 1231 tests. [ FAILED ] 4 tests. [ FAILED ] 500 tests. I would like to add the ...
0
votes
1answer
55 views

Getting a Process ID & Assigning to a Variable in a Bash Script

I have an interesting situation. All code here is a functional pseudo-code example of the exact issue I am facing so no jokes about assign the output of date. I actually want to capture the output of ...
1
vote
2answers
69 views

Securely execute shell script via website

I'm trying to run a shell script using php exec. The thing is - this isn't very secure as I am posting to it via a html text box i.e. <?php $output = shell_exec ('whois '.$_POST['domain']); echo ...
0
votes
6answers
43 views

Remove part of the path in shell

echo "/dir1/dir2/filename.txt" | sed ???? What should be the Sed expression to get the output as /dir1/filename.txt If there is any other simpler way to achieve this, that is also welcome.
0
votes
2answers
52 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 ...
1
vote
1answer
42 views

Using lynx in a bash script

I am trying to write a bash script that will convert all html files in a directory to text files. I figured I could do this using lynx. Such as... lynx -dump index.1.html > index.1.txt This ...
0
votes
2answers
42 views

Bash Script : Unwanted Output

I have this simple bash script: I run ns simulator on each file passed in argument where last argument is some text string to search for. #!/bin/bash nsloc="/home/ashish/ns-allinone-2.35/ns-2.35/ns" ...
0
votes
1answer
81 views

Creating a shell script with config to run basic commands ssh connection with output

I'm looking at creating a small shell script with a config file where I can set the IPs of the servers that need to checked and execute a few simple commands like who, date, uname, etc. and print the ...
0
votes
2answers
72 views

Bash Script error: [: missing ]

#!/bin/bash if [ `date +%u` -lt 6 && `date +%H` == '19' ] ; then echo 'Sorry, you cannot run this program today.' else echo 'yes, you can run today' fi The script above is to run a ...
1
vote
2answers
41 views

Going into directory using bash variable

I have the following functions in my ~/.bash_aliases file mycd() { dir=$(cat) echo "$dir" cd "$dir" } alias c=mycd and gotoD() { find -name $1 -type $2 | awk '{ print $0 }' | sort -k2 | ...
0
votes
2answers
36 views

Echo multiple variables to dzen bar

I have a bash script that has three functions. Each has an output that I pipe to dzen2. Below is a pseudo-code version of the script. printVol() { LEVEL=getVolume VOL='Volume: '$LEVEL echo $VOL } ...
2
votes
2answers
59 views

Bash: Spliting string based on some delimiter and storing each in a variable

113050050/CS101/mysql_java.pdf the above is my string, which is stored in a variable 'line' line="113050050/CS101/mysql_java.pdf" Now I want to split $line based on delimiter / and store each ...
1
vote
2answers
44 views

Create Directories from an array in a for loop

I have an array of customer names that I want to use to make a directory. Below is the code I'm running: $ echo "$customerArray=( customer1 customer2 customer3 customer4 customer5 )" for ...
0
votes
3answers
73 views

Bash scripting missing ']'

I am getting an error ./test.sh: line 13: [: missing `]' in the file test.sh I tried using brackets and other options such as -a or by checking the size of the file p1 but the error is always there ...
0
votes
1answer
66 views

wget spider returns all URLs twice — where is the bug?

I was looking for a script to create a URL list for a sitemap and found this one: wget --spider --force-html -r -l1 http://sld.tld 2>&1 \ | grep '^--' | awk '{ print $3 }' \ | grep -v ...
0
votes
1answer
58 views

Revising an one liner [closed]

I've cobbled together a one-liner so I can quickly find any drives that have medium errors on a server. This is like so: /var/lib/einarc/tools/adaptec_arcconf/cli getlogs 1 device tabular | egrep ...
0
votes
2answers
71 views

bash script to copy file into multiple specified directories

I'm looking to create a script that takes a file and copies the file to multiple directories e.g. cp2dir filename dir1/ dir2/ dir3/ I've dug around and it looks like my route is to use cat ...
0
votes
1answer
81 views

test if file(s) from a given pattern exists in bash [duplicate]

How do I test if a file (or many) named from given pattern exists and do stuff based on that test? This is my failed attempt: [[ { ls ../outputListWorkerPid_* | wc -l } -ge "1" ]] && echo ...
4
votes
1answer
64 views

In Bash how do you see if a string is not in an array?

I'm trying to do this without adding additional code, such as another for loop. I can create the positive logic of comparing a string to an array. Although I want the negative logic and only print ...
0
votes
1answer
29 views

Bash: while terminate early when reading from file

I am trying to run a file that contains a sequence of commands/scripts to run with arguments, like: ls /etc/ cat /etc/hosts/ script.sh some parameters ... This seems to work fine but in some cases ...
0
votes
2answers
57 views

Add data to Bash array over multiple scripts

I need to pass array data between two bash scripts. I have a controller configuration which both scripts source (etc/config). In this file I have three arrays declared: declare -a exeSuccess declare ...
1
vote
5answers
63 views

Alternate merge strings in BASH

From KS=$(locate acpi-support | grep "/etc/rc" | cut -f4 -d/ | tr -dc '[K,S]') LEVELS=$(locate acpi-support | grep "/etc/rc" | cut -f3 -d/ | tr -dc '[0-9]') echo $KS echo $LEVELS I get the ...
0
votes
1answer
73 views

Bash Script: How to use variables from list

I am trying to write a script that will report back the last time a file was updated in a folder. The folders are created everyday Example: /home/user/todaysdate. Inside todaysdate folder exsist that ...
0
votes
1answer
46 views

How to sequentially execute a command on every file in a directory?

I have a directory I'm polling through cron for new uploads and I'm running a sequence of scripts on each upload. one part of the program retrieves an image from the web using the name of the ...
1
vote
1answer
126 views

Bash shell Array manipulation

I have a small script which reads lines from a text file and stores them in an array. #!/bin/bash while read line do array+=("$line") done < $1 for ((i=0; i < ${#array[*]}; i++)) do echo ...
1
vote
1answer
97 views

Linux - Create sub-directories from file names in current directory

I have a list of files in a directory like below. /file1 - filename1.txt /file2 - filename2a.txt /file2 - filename2b.txt /file3 - filename3.txt /file4 - filename4.txt /file5 - filename5.txt I am ...
0
votes
3answers
65 views

bash: boolean in while loop

This is probably a very simple / stupid question, but I am not understanding why I am not getting the expected value when I run this: FOUND_FRONTDEV=false echo "$PATHS" | while IFS= read -r line ...

1 2 3 4 5 23