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
5 views

Query Registry Hives/Strings

I'm trying to write a script to remotely query HKLM and HKU registry hives and find strings for indicators of compromise. If a string is found the output is printed to a file. So ideally this would ...
0
votes
4answers
22 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
1answer
24 views

Bash string split

I have a log file that I'm reading line by line. Possible input: " 0:00 InitAuth: \auth\0\auth_status\init\auth_cheaters\1\auth_tags\1\auth_notoriety\1\auth_groups\ \auth_owners" Wanted Output: ...
3
votes
1answer
22 views

Bash diff body text of html file only

I'm writing a shell script which tracks the changes of a website and emails me with the contents of the change if one occurs. The idea is to use wget to grab a copy of the html and compare it to the ...
0
votes
1answer
40 views

Running a Python Script Like a Built-in Shell Command

I have gone through the following steps. Made the file executable, Tested that the file could be run with ./script1.py, Added the file's directory to the system $PATH. However, at this point, am I ...
0
votes
1answer
29 views

Bash script to change file names recursively

I have a script for changing file names of mht files but it does not traverse through dirs and sub dirs. I asked a question on a local forum and I got an answer that this is a solution: find . -type ...
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 ...
0
votes
4answers
55 views

Count line lengths in file using command line tools

Problem If I have a long file with lots of lines of varying lengths, how can I count the occurrences of each line length? Example: file.txt this is a sample file with several lines of varying ...
0
votes
0answers
24 views

C++ Win32 API Shell_NotifyIcon with modify flag always fails

I have been trying to use the Shell_Notify API of Windows for the app I am making. By using Shell_NotifyIcon, I am successfully able to add an icon to the taskbar when my app starts using the ...
0
votes
2answers
37 views

Linux script select menu

I need to create a select menu with six options using the select loop and the case instruction BUT NOT THE ECHO COMMAND FOR THE MENU OPTION and they have to display like this: 1) opt1 2) opt2 3) opt3 ...
-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
0
votes
0answers
13 views

unoconv works from terminal using www-data but not from php script also as www-data

I wrote the following function in php public static function convert($originFilePath, $outputDirPath, $toFormat) { $command = 'echo $PATH & UNO_PATH=/usr/lib/libreoffice unoconv --format %s ...
0
votes
0answers
16 views

How to use crontab in Android?

I can't find answer to my question: Is it possible to run crontab to reboot Android using busybox (or other means) Tried to run crontab, and it complain about unknown uid 0. Tried to run reboot, and ...
1
vote
2answers
21 views

Run a shell script on Ubuntu startup

I have a shell scrip that runs on jvm, it works as I write: sh /opt/bin/myshel.sh I added a shell script to /etc/inti.d with this detail: #! /bin/sh ### BEGIN INIT INFO # Provides: ...
1
vote
1answer
12 views

How do I overwrite multiple lines in a shell script?

I want to write multiple lines over and over to the shell. Something like echo "One Line" echo "Two Lines" echo "\r\b\rThree Lines" echo "Four Lines" Ideally this would first output: One Line Two ...
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 ...
0
votes
3answers
47 views

grep or sed — need to extract a particular text

How would I extract only a substring of matched text. I have an XML file with multiple lines. However this is what I am concerned with. <url>/localhost/index.html</url> I tried cat ...
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
1answer
21 views

Set PHP path correctly for MAMP Pro

MAMP Pro makes you edit a php.ini template through the application and it creates the file in /Library/Application Support/appsolute/MAMP PRO/conf/php.ini each time MAMP Pro is started. How do I get ...
0
votes
2answers
22 views

Shell if else nested loop error

This is my script ...i get this error below. I suspect second if else is wrong but unble to figure that out .. read -p "Do you wish to continue the merge session? (y/n) " RESP if [ "$RESP" = "y" ]; ...
1
vote
0answers
12 views

How to exit SFTP when cd command fails

Shell script for file transfer by SFTP is already written and working fine on AIX Version 6.1. I am developing ETL with SAP Data Services and real new to shell scripting. During unit testing, I ...
-3
votes
1answer
33 views

Implementing Algorithm Syntax Error

#!/bin/ksh extended_gcd() { a=$1 b=$2 x=0; lastx=1; y=1; lasty=0; while ((b!=0)); do quotient=$a/$b tmp3$b b=$(($a%$b)) a=$tmp3 tmp3=$x $x=$lastx-$quotient*$x ...
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 ...
1
vote
3answers
27 views

Wrap STDIN with characters

I would like to turn "{something: here}" into "[{something: here}]" For example: $ echo "{something: here}" | magic_command $ [{something: here}] I want to do it all as part of a bash one liner ...
0
votes
2answers
48 views

How to use command grep with several lines?

With a shell script I'm looking for a way to make the grep command do one of the following two options: a) Use the grep command to display the following 10 lines of a match in a file; ie, the command ...
1
vote
5answers
36 views

Select line below search expression in log file

I am trying to search logs for an expression, then select the line below each match. Example I know I want the lines below CommonText, for example given the log data: CommonTerm: something This ...
1
vote
2answers
17 views

git alias to delete local and remote

I'm trying to write an alias to delete both a local and remote branch at the same time, but I can't figure out why the syntax is not working. In ~/.gitconfig, I've tried the following aliases, but ...
0
votes
7answers
81 views

incrementing a number in bash with leading 0

I am a very newbie to bash scripting and am trying to write some code to parse and manipulate a file that I am working on. I need to increment and decrement the minute of a time for a bunch of ...
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 ...
1
vote
1answer
28 views

Wildcards in Korn Shell

When I‘m in my home directory and type “ls *s*” in the terminal, it shows me all folders and files that have ‘s’ in their names (Music for example). But when I type “ls *si*”, it doesn‘t show anything ...
1
vote
5answers
62 views

Find and update(append) csv with shell script

Input file: ID,Name,Values 1,A,vA|A2 2,B,VB Expected output: 1,A,vA|VA2|vA3 2,B,VB Search file for a given ID and then append a given value in the values {field} use case : append ...
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?
0
votes
1answer
16 views

Executing korn shell script

I can't execute my korn shell script without the ksh command. I included #!/bin/ksh in the first line of the script but when I try to execute it only by name it says no such file or directory. Can you ...
0
votes
0answers
36 views

Interactive C program with shell key mapping?

I want to write a interactive program in C just like shell, but I do not need to execute external program. I want to add a feature like emacs-style key binding, history. e.g. enter Ctrl+P will show ...
-1
votes
0answers
13 views

Retrive Weblogic Status using UNIX Shell Script

How to check weblogic server status using unix shell script. daily i have to check weblogic server statys using admin console. so, for automation i need a code for checking server status.
1
vote
5answers
51 views

Replacing text in a file from a list in another file?

I asked this question before but don't think I really explained it properly based on the answers given. I have a file named backup.xml that is 28,000 lines and contains the phrase *** in it 766 ...
0
votes
4answers
77 views

Unix: Get the latest entry from the file

I have a file where there are name and time. I want to keep the entry only with the latest time. How do I do it? for example: >cat user.txt "a","03-May-13 "b","13-May-13 "a","13-Aug-13 ...
0
votes
1answer
8 views

posix shell: stdout to file, exitcode to a variable and last line of stderr to another variable

I implemented the following in POSIX shell (not bash): fail.sh: #!/bin/sh echo something useful echo warning 1 >&2 echo warning 2 >&2 echo an error message >&2 exit 100 The ...
0
votes
0answers
34 views

How to redirect utf-8 output into txt file

I ran a python script to write my log files using: nohup python my_script.py >> log.txt However, I thought maybe it is >> in Linux which doesn't support utf-8 characters. In my ...
0
votes
4answers
49 views

Find and replace using a list in text file?

I'm not even sure if this is possible, but sure am hoping that it is. I have this line 766 times in the file backup.xml: *** Hosting Services I then have the file list.txt which contains 766 lines ...
0
votes
3answers
36 views

How to add new number into each line?

I have this line about 500 times in a my file backup.xml my-company-review/</link> Is there a way through command line, perl, etc. to add a number into the line after the word review. For ...
0
votes
1answer
9 views

How to find and replace on a specific amount of times?

I need to find the first 413 times this is in a text file: <title>Local SEO Services - The Company Review</title> And replace it with this: <title>Local SEO Services - TheCompany ...
1
vote
2answers
106 views

How to open `find` output with vim?

I've written a function that will find a function or class definition among Python files. It generates an argument list to be used with vim. It works for the first argument / file, but fails for ...
2
votes
3answers
40 views

Sorting multiple non-standard columns in a shell script

I have a list of files, with full path, that I need to sort in a bash shell. The list will look like /total/path/software/version1.2.3.4/filename.10.cfg -- infomation grepped ...
0
votes
0answers
27 views

Folder's context menu item “paste” and “paste shortcut” disabled

I am fetching folder's context menu using IShellView::GetItemObject (using flag: SVGIO_BACKGROUND). Context menu is populating fine (same as window explorer populates for folder when we make a right ...
0
votes
1answer
24 views

Python matplotlib importError in command prompt but not in python shell [duplicate]

Disclaimer: I'm new to python and first post, so I apologize if this isn't formatted correctly or somewhere on the site. I haven't found anything thus far though. I'm using Python 2.7 (32 bit) on ...
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 ...
-1
votes
1answer
25 views

How to make Korn Shell to go to new line [closed]

how can I make the ksh to go to new line when I'm typing in the terminal and it goes to the end of the current line?

1 2 3 4 5 333