0
votes
3answers
23 views

Set LD_PRELOAD when executing a command in shell script

I wanna to execute a command like this: "LD_PRELOAD=/path/to/my/so ./a.out" so I wrote a shell script: cmd="LD_PRELOAD=/path/to/my/so ./a.out" ${cmd} Error occured: LD_PRELOAD=/path/to/my/so : no ...
0
votes
2answers
50 views

Is awk a programming language or just a tool? [closed]

I have often seen people referencing "awk" as a programming language.According to my intuition all I understand about awk is that it is a tool used for some specific tasks. So why would some people ...
-3
votes
1answer
28 views

shell code to Extract/Remove files older than 1000 days from tar archive in linux system

I am not able to extract/remove files older than 1000 days from a tar archive in linux system. Please advise the optimal solution to achieve this. Appreciate your solutions. Thanks in advance
3
votes
1answer
41 views

Using a shell script but it fails with spaces on directory or name

I'm relatively new to Linux script and I'm having an issue with one I'm trying to use when there are spaces in the directory name or file name. The script shrinks PDF files so that i can put them in ...
1
vote
4answers
36 views

save the output of a bash file

i have some files in a folder, and i need the first line of each folder transaction1.csv transaction2.csv transaction3.csv transaction4.csv and i have the next code #All folders that begin with ...
0
votes
2answers
63 views

Bash does not list all files with ls

i have a bash code, and i need list the files of a path and save in a file processVerification(){ ls $1 > testFiles } and in the folder i have the files transaction-2012-01-20.csv ...
1
vote
0answers
63 views

Terminating half of a pipe on Linux does not terminate the other half

I have a filewatch program: #!/bin/sh # On Linux, uses inotifywait -mre close_write, and on OS X uses fswatch. set -e [[ "$#" -ne 1 ]] && echo "args count" && exit 2 if [[ ...
0
votes
3answers
28 views

downloading images from links as column values in a csv file in linux/unix

I have a temp.csv file that has 4 columns and plenty of rows. The column0 has a link that are images from the internet like 'www.abc.com/one.jpg' and so on. I usually download any link using the ...
0
votes
0answers
19 views

Tesseract with some tiff from Ghostscript in a shell script not work

I have the problem that my ShellScript don't work with some PDFs #!/bin/sh name=$(basename $1) tiff=/...somewhere.../$name.tif text=/...somewhere.../$name gs -q -dBATCH -dNOPAUSE -sDEVICE=tiffgray ...
0
votes
1answer
29 views

Difference between $(command) and `command` in a script [duplicate]

What is the difference between executing a command like this: var=$(ls -alh /dir) And doing it like this: var=`ls -alh /dir` Is one method able to be used in more interpreters than the other?
1
vote
2answers
39 views

sed command that works for Solaris, Linux and HPUX

I need to change a directive in a config file and got it working in Linux but in Solaris, it says command garbled. Here is the directive enable-cache passwd yes I need to ...
0
votes
2answers
26 views

Shell Scripting: Quotes Around Variable with \$

I've just started learning about shell scripting and have been trying to workout what's going on in this script: http://dev.cloudtrax.com/wiki/ng-cs-ip-logging Specifically, I can't wrap my head ...
1
vote
1answer
25 views

Setting variable to last arg from command line parameters

I'm trying to write a script in a way that makes it simple to add future command line args. I'm using getopts and that works well. However, I'm running into issues with the case statement. ...
1
vote
0answers
39 views

How to make 2 applications run each other in linux?

The situation is as follows: We have a main application and a watcher application. Both of them are c++ applications. Both of them use daemon(1,0) function. Watcher checks if main application is ...
2
votes
2answers
48 views

Exact grep -f command in Linux

I have 2 txt files in Linux. A.txt contents (each line will contain a number): 1 2 3 B.txt contents (each line will contain a number): 1 2 3 10 20 30 grep -f A.txt B.txt results below: 1 2 3 ...
0
votes
1answer
36 views

How compare two paired list in bash?

I'm trying to compare a remote md5sum result from some files into a server, with my local md5sum files and those that match, the hash and the filename should be removed from the local server. The ...
1
vote
1answer
37 views

pipe or send strings with socat/netcat with a pause

i capture unbuffered codes from ttyUSB0 as an string though hexdump'ing /usr/bin/stdbuf -o0 /bin/busybox hexdump -v -e '12/1 "%02x" "\n"' /dev/ttyUSB0 with example-output like this (without ...
-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
vote
1answer
48 views

How to send nic mac address information using javascript, php, bash in linux box?

i'm trying to identify client Linux PC (our branch) to allow acces to our PHP application at main office. i want to get the nic mac address (using php/bash) then hashing/crypt it, then send to php ...
3
votes
2answers
57 views

bash, command not found

i'm having trouble fixing the error in this bash script, I seriously have no idea what I did wrong, any help is appreciated thanks [centoslive@livecd ~]$ sh ListFich.sh test Synthese, Question 2 ...
2
votes
3answers
52 views

Linux: stream rotating log files into one file

I would like to gather all logs entries, that are written into log files with rotation: log_2013_05_10.txt log_2013_05_11.txt log_2013_05_12.txt ... ...into one file. The goal is, ...
0
votes
0answers
29 views

No output when running jar from shell script

I am running a jar-file in a shell script calling hierarchy. I want to redirect the output from executing the jar file to my logfile "loga.log" but this does only work when I run this script with ...
2
votes
1answer
32 views

unix find and replace characters with strings for multiple characters

I want to replace all occurrences of certain characters in my file with words. My question is, can I do that for all the characters using a single command. I am using the following command for ...
1
vote
1answer
25 views

Creating forks of `ffmpeg` in loop inside a shell script “loses” some iterations

I have a shell script that takes a directory as input, reads all mp4 files in it and convert them to a mp3 with ffmpeg: #!/bin/bash dir=$1 while read -rd "" file do base=$(basename "$file") ...
1
vote
5answers
46 views

How to use sed to extract substring

I have a file containing the following lines: <parameter name="PortMappingEnabled" access="readWrite" type="xsd:boolean"></parameter> <parameter name="PortMappingLeaseDuration" ...
2
votes
3answers
50 views

Shell: How to a file's specified parent directory's name?

I am a beginner for Shell programming. I am currently writing a script to manipulate found files. but I would be needing to get the parent directories' names for found files. For example, ...
0
votes
2answers
49 views

Is this an effective way to wait 10 seconds for an IP address?

I have a shell script that basically creates a vm that I use to do some processing on. This VM is given a random IP address that I obtain using VMwares vmrun utility. The machine can take anywhere ...
1
vote
0answers
16 views

detect HPA on pendrive [closed]

My computer is showing the capacity of my 8GB pendrive as 736MB. Formatting it did not help. I want to know if there is some way to detect the presence of an HPA on a pendrive by the means of some ...
1
vote
1answer
34 views

unix linux shellscript programming printing input arguments containing multiple words

I am trying to write a shell script for which 1st 2nd and 3rd...n argument contains multiple words MAILING_LIST="abc@gmail.com xyz@gmail.com zed@gmail.com" echo $MAILING_LIST mailing "Error in Job" ...
0
votes
4answers
84 views

Linux Shell - String manipulation then calculating age of file in minutes

I am writing a script that calculates the age of the oldest file in a directory. The first commands run are: OLDFILE=`ls -lt $DIR | grep "^-" | tail -1 ` echo $OLDFILE The output contains a lot ...
0
votes
1answer
28 views

Fish programming: Why are `bind` commands in config.fish not executed?

At end of /usr/share/fish/config.fish, I have the following commands: bind \e\[1\;5C forward-word bind \e\[1\;5D backward-word echo foo Afterwards I run fish, it prints "foo". I then run bind to ...
0
votes
0answers
24 views

Binary file fails to execute in linux though file is present [migrated]

I have a binary called testbin in /x/eng/r1/scratch/user/.jef/testbin. When I go to a different directory and try executing the binary as $ /x/eng/r1/scratch/user/.jef/testbin I get an error: ...
-1
votes
2answers
20 views

changing shell to something that isn't restricted [closed]

Ubuntu 12.04 I recently made a new user on a new server, and I found that my up and down arrows weren't working, so I found I needed to change the shell. I changed it to rbash, and now I can't cd. ...
0
votes
0answers
15 views

Child process standard output redirection to parent standard output by Linux ash-shell

I have got one Linux application run by the command: ash -c /usr/local/esw/utilities/mymonitor which then create a child process running the mymonitor application, whose output is driven by ...
4
votes
1answer
62 views

Variable scope in the shell level

Recently I have been reading The Advanced Bash Script and I find something about the variable scope between parent and children shells puzzle me so much. Here it is: Scene: there are some ways to ...
-1
votes
0answers
13 views

compress folder in linux. [migrated]

I'm a linux newbie and I'm trying to zip a folder which exists on a remote host and export it to another remote host. A quick google search lead me to tar/gzip and rsync options but I'm not sure how ...
1
vote
4answers
48 views

Regex to match string between quotes

I'm using a shell script to read in a file and then piping the output to grep and trying to extract the string contained between two quotes (while excluding the quotes). ./readFile.sh | grep -e ...
0
votes
2answers
45 views

Merging Multiple records into a Unique records with all the non-null values

Suppose I have 3 records : P1||1234| P1|56001|| P1|||NJ I want to merge these 3 records into one with all the attributes. Final record : P1|56001|1234|NJ Is there any way to achieve this in ...
0
votes
0answers
30 views

how to (run/start) shoutcast via php in linux?

my code now is <?php $command = "/path/to/sc_serv /path/to/sc_serv.conf"; $PID = shell_exec("$command > /dev/null & echo $!"); ?> this will give me the PID number but will close ...
0
votes
1answer
30 views

Linux command - adding Time elements to file name

I run regular backups of my phpbb forum files from the command line: now=$(date +"%m%d%Y") zip -r phpbb_complete_file_backup_$now ~/public_html/forum/* I'd like to add the hour and minutes to the ...
-4
votes
0answers
39 views

Avoid input password or other things every time in linux

I need to excute a shell script and I want to avoid input password and others each time when I want to excute this script. How can I do? Expect? Whether are there other ways to avoid it? I give an ...
1
vote
1answer
54 views

Shell script wildcard expansion issue

Following is my shell script and I try to copy all the files in the current directory to another machine which I have permission to copy. #!/usr/bin/expect -f spawn scp -pr "*" ...
1
vote
3answers
50 views

Linux: how to get the second latest file in a folder

Found several posts like this one to tell how to find the latest file inside of a folder. My question is one step forward, how to find the second latest file inside the same folder? The purpose is ...
-5
votes
0answers
61 views

Shell Scripting Exercise [closed]

Do you have some sample shell script exercise problems that one use to learn Shell Scripting like a "Problem solving" approach. Right from simple to complex. I tried to google it but didn't find much ...
0
votes
1answer
48 views

Best way to determine if an SCP transfer fails

At the end of a script if successful it creates a file (files) and stores it into a destination directory; I'm then retrieving the file (files) via scp from a server back to my workstation. The user ...
1
vote
3answers
68 views

how to find and delete below line using shell script

Below line has printed in my all php project pages because of malicious attacks.Now think is how i can find and delete this lines using shell script function_exists('date_default_timezone') ? ...
1
vote
3answers
36 views

Assign variable from SSH server to local machine variable

I have two scripts that are being run. One runs from a client workstation and calls a script on a server. I need a variable from the server script and I figured I could do it this way, but it isn't ...
0
votes
2answers
28 views

bash regex (or test) strange behavior

[myuser@mycomputer]$ word="hello" [myuser@mycomputer]$ if [[ $word =~ "^hello$" ]]; then echo "it was a hello"; else echo "must have been a goodbye"; fi must have been a goodbye I don't understand ...
0
votes
2answers
38 views

“Argument list too long” in display all list elements

I would like to dump the content in a list, but I have no idea how to solve this problem now. When I try to display all elements in the list, shell shows: arguments list too long in Makefile: ...
0
votes
4answers
90 views

Sort entries of lines using shell

Considering the following input and output: infile | outfile 1 3 5 2 4 | 1 2 3 4 5 2 4 5 | 2 4 5 4 6 2 1 | 1 2 4 6 Is there any combination of UNIX programs, not involving ...

1 2 3 4 5 81