The term 'shell' refers to a general class of text-based command interpreters most often associated with the Unix & Linux operating systems.

learn more… | top users | synonyms (3)

0
votes
0answers
6 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 ...
0
votes
3answers
17 views

why echo strings in bash reading from stdin doesn't show space characters

Here is my code michal@argon:~$ cat test.txt 1 2 3 4 5 michal@argon:~$ cat test.txt | while read line;do echo $line;done > new.txt michal@argon:~$ cat new.txt 1 2 3 4 5 I ...
-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 ...
0
votes
0answers
20 views

Using Expect in a script, how do I get the script to skip an entry line in a source file?

Here is the script. #! expect set timeout 60 proc dostuff { currenthost} { send "en\r" expect "Password:" send "XXXXXXX\r" expect "#" send -- "conf t\r" expect -- "#" send -- "enable aaa console\r" ...
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 ...
1
vote
4answers
51 views

Trying to understand an easier way with RegEx

To give you an idea, I'm trying to accomplish grabbing any string with this information. IP Address for: John Doe on 05/20/13 I basically need to find all strings in that format.. I am using date ...
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
2answers
17 views

How to detect running app using ADB command

I have one Android Device running Jelly Bean OS. Is there any way to detect the process is running or not using ADB command if i know the package name?
0
votes
0answers
11 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
2answers
39 views

foreach loop through associative array in bash only returns last element

This should print the whole associative array to the console: #!/bin/sh declare -a array=([key1]='value1' [key2]='value2') for key in ${!array[@]}; do echo "Key = $key" echo "Value = ...
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 ...
0
votes
0answers
17 views

adb shell - installing or moving apk from /data to /mnt/sdcard

I'm working on a script via shell for the installation of one or more apk from an USB key plugged in the device. The device is a MID custom, made in China, with root permissions. Android 4.x on-board. ...
0
votes
2answers
31 views

Run adb shell command using android code

echo 0 > /sys/class/leds/button-backlight/brightness The above command is working perfectly through adb shell.But when I try to run through my code there is no effect.Here is my code. Process ...
1
vote
3answers
25 views

Build a sed script from specific environment variables

I need to have a very basic template system in shell to port a windows installer to linux. So I can not change the syntax of the template variables. I want to take specific environment variables ...
1
vote
0answers
19 views

Secure method of running threads with exec() in a class

I'm using exec(); in a custom micro framework and would like to get some opinions on if the method I'm using is vulnerable and what I can do to beef up security, we certainly don't want these ...
2
votes
8answers
82 views

Unix command to convert multiple line data in a single line along with delimiter

Here is the actual file data: abc def ghi jkl mno And the required output should be in this format: 'abc','def','ghi','jkl','mno' The command what I used to do this gives output as: ...
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
2answers
54 views

Limit SSH User to a shell command

My question is how can I allow an user to ssh to my server with limitation to a shell command and a directory? My situation I'm using git to deploy code to my Server. I have 2 servers, 1st one is ...
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") ...
0
votes
1answer
29 views

What is the fastest way to execute Python from PHP?

What is the fastest way to execute Python from PHP assuming that I need to pass variables to Python script and get result from it?
1
vote
1answer
40 views

bash set -e: How to find out on which line the script exited on?

I have a very high level and complicated script which I basically need to debug with set -e on (because I'd like it not to run expensive operations in a loop as I work out the logic), but it is ...
0
votes
2answers
31 views

sed find/replace lines with whitespaces

I'm writing a shell script that will find and replace a line to disable password caching in nscd. The problem is, there is a ton of white space before and inbetween the parameters and I can't seem to ...
1
vote
1answer
51 views

Manipulate columns using awk or sed

I have a file which i would like to rearrange.... Input file: sublat 16 0.04 0.051 32 0.04 0.050 16 0.06 0.055 32 0.06 0.054 c2dotc2 16 0.04 0.464 32 0.04 0.624 16 0.06 0.505 32 0.06 0.743 Output ...
2
votes
2answers
22 views

count occurrences of char in string using bash

I need count the numbers occurrences of char in string using bash, when use for example "t" the return of routine is the number of occurrences , but when using comma or semicolon etc, is cero. for ...
3
votes
4answers
68 views

What occurs when you type quotation mark " in shell terminal

I have been searching the web for this but I can't understand what the unix shell terminal is doing when you just type a quotation mark " $ " and it gives you something like that > where you ...
2
votes
3answers
57 views

pointer in shell script?

I am trying to print a filename which contains decimal point numbers... say L2.3stop.txt I have variables defined as : z1=2.3 z2=3.4 z3=7.8 z4=8.9 and so on In a for loop i runs from ...
3
votes
0answers
18 views

SHOUTcast daemon script not functioning properly

I've got a SHOUTcast server running on Ubuntu. The server process is running great, but I can't seem to get the daemon script to function properly. Following a couple tutorials I found I came up ...
2
votes
0answers
81 views

How to implement Ctrl Z on C shell

I'm tring to implement a mini shell. on this mini-shell i'm tring to use Ctrl Z to suspend a job, such as ps -ef. Every suspended job should be added to the total jobs. here is my code for example: ...
0
votes
1answer
24 views

Windows, Emacs, Git Bash, and shell-command

Windows 7. Emacs 24.3.1. Git 1.8.1.msysgit.1. I have the following in my equivalent .emacs file: (if (equal system-type 'windows-nt) (progn (setq explicit-shell-file-name ...
0
votes
1answer
22 views

What Environmental Variable Sets Git Color.UI?

Is there a Git environmental variable that dictates the color.ui config option? It does not seem to be in the documentation, if there is one.
-3
votes
1answer
49 views

Need guidance in writing a unix script to compare the files in source and target directories

i want to write a unix script where: source dir:/test1/jobs/def1,def2,def3....so on target dir:/test2/jobs/def1,def2,def3....so on scenario1: i want to compare that jobs folder in source and target ...
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
3answers
52 views

how to parse watch command output to last 5 digits?

From the command watch -n1 "ifconfig eth0 | grep GiB" I have output given below, RX bytes:730624111504 (680.4 GiB) TX bytes:31815434434 (29.6 GiB) Now I just want the last 5 digits before ...
0
votes
3answers
24 views

Bash case statement

I'm trying to learn case as I was to write a fully functional script. I'm starting off with the below #!/bin/sh case $@ in -h|--help) echo "You have selected Help" ;; ...
2
votes
7answers
80 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
0answers
37 views

How to recover bash output of an already closed window? [migrated]

I have run a specific program in a bash terminal and I closed it by mistake before reading its output. Is it possible to recover the information that was sent to the stdout by taking a look at some ...
0
votes
2answers
32 views

Executing shell command in python with file as stdin

In my Python code, I have executable_filepath = '/home/user/executable' input_filepath = '/home/user/file.in' I want to analyze the output I would get in shell from command /home/user/executable ...
2
votes
1answer
24 views

Ignoring directories from a file

I am in the process of creating a script that lists all files opened via lsof output. I would like to checksum specific files and ignore directories from that output but am at a loss to do so ...
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
2answers
37 views

source a shell script from another script and check return code

I want to source a file eg name.sh from another script and check the return code and decide on it's error code. If I use source name.sh then if name.sh return non-zero return code my main script ...
0
votes
2answers
44 views

/bin/sh: 0: command not found

I have a following problem guys, my PHP script is like this: #!/usr/bin/php <?PHP // Define the path to file $file = 'mydb.sql'; if(!file) { // File doesn't exist, output error ...
0
votes
1answer
22 views

start daemon on remote server via Jenkins SSH shell script exits mysteriously

I have a build job on jenkins that is building my project and after it is done, it opens an ssh shell script on a remote server and transfers files and then stop and starts a daemon. When I stop and ...
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 ...
2
votes
2answers
36 views

Shell script termination notification

I have a requirement in shell script that in case if shell terminates for some reason I.e terminal closed or user terminated, I would like to do some work like clean up and unlocking etc. Is it ...
0
votes
0answers
6 views

How to check appstore provision in Xcode runscript

I'm increasing the build number using xcode runscript the build number is increasing only while achieving code for checking release or debug if [ $CONFIGURATION == Release ]; And my need is to ...
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" ...
-1
votes
2answers
40 views

Deleting log directories of a particular timestamp in UNIX

I want to delete directories that are five days old, based on the directory name, instead of unix timestamp. Let us assume that directories are created like test_2013-05-20-12:23:43 and so on. I want ...
0
votes
1answer
21 views

Getting previous day's date in Unix

I am using the following code to assign previous day's date to a variable yesterday: yesterday=`TZ=GMT+24 date +%Y%m%d`; echo $yesterday; The value is assigned correctly when I execute the command ...

1 2 3 4 5 332