Tagged Questions
0
votes
1answer
9 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
20 views
Close a specific Chrome tab in Ubuntu/Linux using terminal command
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
31 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 ...
2
votes
2answers
46 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
44 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
23 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
27 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
21 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
44 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
45 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
14 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
30 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
75 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
18 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
11 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
58 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
42 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
28 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
29 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
50 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
49 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
51 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
44 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
60 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
32 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
36 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
88 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 ...
0
votes
3answers
47 views
prevent terminal opening while executing script (crontab)
I have written my own python script that gets .jpg's from the web and changes my desktop background.
I want this to be executed periodically, so I have created a cronjob in crontab that does it.
...
0
votes
2answers
56 views
Linux watch command “no such file or directory”
In Linux I'm trying to monitor all subdirectories of the current directory and output their file counts. The command I currently have is:
watch 'for FILE in `find . -maxdepth 1 -mindepth 1 -type d | ...
0
votes
1answer
22 views
While creating the tar file the entire path is created as the tar file
Hi I have created a shell script to backup the content from a directory. Its creating the file but its preserving the entire path.
Here is my code
#!/bin/sh
#creating the destination file
...
0
votes
1answer
39 views
Shell script permission denied when conditional test
Whenever I try to run my shell script, I'm getting an error under 4 different if tests.
script.sh 45: script.sh: : Permission denied
script.sh 52: script.sh: : Permission denied
script.sh 59: ...
1
vote
1answer
22 views
Ways of reading through files
I'm writing a number of ksh scripts that cycle through a text file, processing it a line at a time.
I tend to use
while read X1 X2 X3 X4
do
<process line>
done < $INFILE
but a ...
1
vote
4answers
88 views
Cat several thousand files
I have several(60,000) files in a folder that need to be combined into 3 separate files.
How would I cat this so that I could have each file containing the contents of ~20,000 of these files?
I know ...
-2
votes
2answers
45 views
Write variables in different columns?
I would like to convert a file with only one column to a file with different columns.
In this initial file, I have 4 variables. Each variable write 10 lines, and I would like to have 4 columns of 10 ...
0
votes
1answer
43 views
Redirection of MySQL Queries into a log/text file in shell script and read the file for particular string
I have written a shell script MySQL_Test.sh to connect to the MySQL database from linux shell and execute three different select statements like the following,
Select count(*) as My_Column_Name from ...
0
votes
1answer
36 views
Shell script handle string with sed
I have a text file, each line is one or more file paths separated with space, all the file has suffix dl, e.g.
/some/path/file.dl
/some/other/path/file2.dl /some/other/path2/file3.dl
...
1
vote
2answers
33 views
getting the pid of a process in zsh
I am coding on a Red Hat Machine and I want to get the process id of a process in the interactive mode as well as the in a script.
In bash 'pidof' works but not in zsh.
What would be the equivalent ...
0
votes
2answers
32 views
Shell Script for removing craskernel
How can I remove crashkernel parameter and attached value from grub.conf ?
title RHELOS (3.6.18-274)
root (hd0,0)
kernel /vmlinuz-3.6.18-274 ro root=LABEL=/ nmi_watchdog=1 ...
3
votes
4answers
81 views
Using shell variables in Python script is not working
I have a shell script where certain parameters are being set like:
k.sh:
export var="value"
export val2="value2"
Then I have a python script where i am calling the shell script and want to use ...
2
votes
2answers
83 views
Linux command to get time in milliseconds
I made a search in SO. And I did not get answer for this question I get only C functions to get time in millisecond in Linux.
Is there command in Linux to get the time in milliseconds?
0
votes
1answer
52 views
Comparing and displaying hash values
I am able to print all of the lines from /etc/passwd by UID and username.
I would like to compare the values of UID and display corresponding usernames by <150 and >150.
this is my while loop ...
0
votes
2answers
40 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 ...
0
votes
1answer
52 views
shell script to increment file names when a directory contents changes (centos)
I have a folder containing 100 pictures from a webcam. When the webcam sends a new picture, I want this one to replace number 0 and have all the other jpg's move up one number. I've set up a script ...




