The Bourne-Again SHell (Bash) is a successor to the Bourne shell (sh). Bash is the default shell in many Linux distributions.

learn more… | top users | synonyms (3)

-3
votes
1answer
33 views

Bash Program - Required

I have a file that has the output from a command. What i want is Say if it's May 17th today it has to delete all the lines that are 15 days from May 17th which would be May 4th ( It has delete all the ...
2
votes
3answers
16 views

Minimal web server using netcat

I'm trying to set up a minimal web server using netcat (nc). When the browser calls up localhost:1500, for instance, it should show the result of a function (date in the example below, but eventually ...
1
vote
1answer
25 views

Text “stuck” to bottom in BASH

I'm creating a script in PHP that will run for quite a while in the command line, it echos quite a bit of data. So in BASH I'm looking for a sort of progress or status bar of some sort that will ...
0
votes
1answer
11 views

ubuntu linux, new terminal window does not recognize installed gems

I am running ubuntu 13.04, I have installed ruby 2.0.0, rvm 1.20.10, rails 3.2.12, as well as many other gems. I am trying to run a spork server for my rspec testing with guard. I opened a new ...
0
votes
2answers
27 views

Echo and backslash (bash)

I'm trying to make a function in my ~/.bashrc file that uses an echo command to pass its arguments through the pipeline. It works, but when I try to input a '\' character it disappears. If I type \\ ...
1
vote
1answer
30 views

Can I change the input color of my bash prompt to something different than the terminal default

My default terminal color is gray, that's fine. My bash prompt displays a bunch of colors, this works fine: PS1="${COLOR_RED}\u${COLOR_WHITE}@${COLOR_RED}${COMPUTERNAME} ${COLOR_BLUE}\w${GITPROMPT} ...
0
votes
0answers
13 views

Change .m3u8 Segment Path

I have successfully create HLS with FFMPEG. How do I make segment path in .m3u8 show only segment name? Current directory creation(bash): folder = '7580338' OUTPUT_DIR='global_assets/temp/'$(echo ...
0
votes
0answers
13 views

POST call with same headers and same request body gives different response?

I was using a website (mysite1.com) , and 3 screens deep from the login screen is the screen that I want to reach using bash and curl & simulating the exact same request that would have gone ...
-1
votes
2answers
25 views

Unix: cat-ing a file out to itself - why does this blank the file? [duplicate]

Can someone please explain to me why this code works (i.e. file2.txt is the alphabetically sorted contents of file1.txt): cat file1.txt | sort > file2.txt But when I do this, file1.txt blanks ...
3
votes
4answers
82 views

Shell script to get list of defined users on Linux?

I put this together, but it sucks: (e.g. magic numbers in there, text parsing.. boo!) awk -F: '{if($3 >= 1000 && $3 < 2**16-2) print $1}' /etc/passwd What's the proper way to do this? ...
0
votes
5answers
54 views

Bash shell: How to test for failure of mkdir?

I'm writing a Bash shell script and want to do robust error checking. The exit status code for mv to make it fail is easy to test, by just trying to move a file you know doesn't exist. I have to also ...
0
votes
1answer
13 views

How to use nc send udp packet to windows 7?

I need send some udp packet consquently from raspberry pi to windows 7,in windows side,i use UDPclient to listen any udp data ,that is the code : byte[] data = new byte[1024]; string ...
0
votes
1answer
14 views

scl enable python27 bash

I've hit a snag with a shell script intended to run every 30 minutes in cron on a Redhat 6 server. The shell script is basically just a command to run a python script. The native version python on ...
0
votes
2answers
25 views

Shell logout after exec rederection for stdin

As described in advanced bash script-guide, exec can be used to redirect I/O. So I just write some cases in my shell. Redirecting stdout or stderr works well, but redirecting stdin makes the shell ...
0
votes
5answers
38 views

Insert into mysql from linux terminal

I have a question. i can insert into mysql database from linux terminal a record with this command: mysql dbTest insert into tablename values(1,"b","c") Now i have a file in Linux with some records ...
-2
votes
2answers
58 views

How to rearrange text file output result

I would like to write a unix script that do the following to have the ff result: textfile1 contains the following text: keyval1,1 keyval1,2 keyval1,3 keyval1,4 keyval2,1 ...
2
votes
2answers
37 views

sed copy substring from fixed position and copy it in front of line

I'm dealing with many csv files and I can't find a way with sed to select a substring at a fixed position (chars 9-16) and copy it at the beginning of the line. This is what I have: ...
2
votes
4answers
54 views

How can you search for a char in a string in bash?

If I have a string var="root/Desktop", how can I determine whether var var contains a '/' character?
0
votes
2answers
45 views

Bash array variables: [@] or [*]?

bash-3.2$ echo astr | sed 'hah' | sed 's/s/z/' sed: 1: "hah": extra characters at the end of h command bash-3.2$ echo ${PIPESTATUS[*]} 0 1 0 bash-3.2$ echo astr | sed 'hah' | sed 's/s/z/' sed: 1: ...
0
votes
3answers
43 views

Bash : Piping to eog

I'm trying to pipe a filename via bash code to eog. Here's my code : ls | grep "sample" | head -1 where sample is the name of the required file. I'm having trouble figuring out how to pipe the ...
3
votes
3answers
43 views

bash: iterating through txt file lines can't read last line

while read p; do echo $p done < file.txt this code can read all lines in the file.txt except the last line any ideas why. Thanks
1
vote
1answer
23 views

Clonezilla custom-ocs bash script failing on ocs-onthefly command

I'm doing a custom clonezilla.. one for source to send a local disk to remote disk with ocs-onthefly... that custom-ocs is working fine. However, the custom-ocs for the destination for some reason is ...
0
votes
3answers
24 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 ...
2
votes
1answer
43 views

bash - remove a fixed prefix/suffix from a string

In my bash script I have a string and it's prefix/suffix. I need to remove the prefix/suffix from the original string. For example, let's say I have the following values. string="hello-world"; ...
1
vote
1answer
17 views

status of process created by nohup

nohup someprogram &> $LOG & echo "what happen: $?" And when I have no access to $LOG or someprogram exits with a status other than 0, I'd like to be able to detect that. Currently, when ...
1
vote
2answers
44 views

Difference between && and -a in BASH

From what I know, && and -a both provide the conditional AND function in an expression for a BASH shell. Is there any difference between the 2 of them?
2
votes
1answer
33 views

ln complains about no such file or directory

I'm new in shell programming on macosx and have a little problem. I've written the following shell script: #!/bin/sh function createlink { source_file=$1 target_file="~/$source_file" if [[ -f ...
-2
votes
1answer
35 views

How to execute bash script without password? [closed]

I need to execute the script after system boot. For example: (sleep 5 && (sudo dhcpcd wlp4s0)) What I need: Executing the script. What I have: [sudo] password for eugene: I has been ...
-1
votes
3answers
52 views

How to search subdirectories for .c files and compile them (shell scripting)

I need to take an argument which is a directory of the current directory and search its folders and compile any C files in those folders. I'm just beginning shell scripting in Bash and am a little ...
-3
votes
1answer
43 views

How to separated zero with point in my bash script? [closed]

My script echo -n "number 1 : "; read bil1 echo -n "number 2 :"; read bil2 jlh=$(echo $bil1 + $bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0' -e 's/\.0*$//'); echo " Your result : $bil1 + $bil2 ...
0
votes
3answers
42 views

begin end or brackets for bash?

I was trying to do some bash programming and wanted to make it somewhat structural. My questions is if I want to make a block code embedded in a bracket like the Pascal begin & end or the C {}, ...
1
vote
1answer
43 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 "*" ...
2
votes
3answers
83 views

How to merge files with line-skipping

Have two files: file f1 has the next structure (after the # are comments which are not in the file) SomeText1 #Section name - one word [a-zA-Z] acd:some text #code:text - ...
0
votes
1answer
27 views

How do I pipe output to an exe in a batch file. [closed]

I want to replicate: #!/bin/bash echo "SOME JS CODE SOME JS CODE SOME JS CODE SOME JS CODE" | node on a windows machine.
0
votes
2answers
27 views

check list of email addresses against other list

I have two files with email addresses (one per line): file1 and file2. How can I remove all the emails in file1 which also exist in file2? Looking for a bash answer, but any other scripting language ...
1
vote
2answers
43 views

Export a variable to the environment from a bash script without sourcing it

suppose that I have this sript export.bash : #! /usr/bin/env bash export VAR="HELLO, VARABLE" when I execute the script, and try to access to the $VAR I get no value ! echo $VAR Is there any ...
0
votes
3answers
37 views

-bash ruby command not found

Every time I log into my VPS I must run source ~/.bashrc before I can run any rvm, ruby, or gem commands. Why is this? Can't make it load by default? ssh deployer@xxx ruby -v -bash: ruby: command ...
2
votes
5answers
73 views

How do I get the last word in each line with bash

For example i have a file: $ cat file i am the first example. i am the second line. i do a question about a file. and i need: example, line, file i intent with "awk" but the problem is that ...
0
votes
3answers
53 views

How to answer yes in Bash Script

Have a quick question, imagine that I have this code: mkdir -p $INSTALLDIR sudo apt-get install -y git clojure leiningen git clone git://github.com/maltoe/storm-install.git ...
-5
votes
0answers
46 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 ...
-6
votes
2answers
31 views

bash: compare 2 files, then output third file with same pattern [closed]

So here is my problem: I have 2 files: File a: Username ID ChanelName somename 1 Ime1 somename 6 Ime2 somename 16 Ime3 somename 12 Ime4 somename 19 Ime5 File b: ID ...
-2
votes
3answers
48 views

Insert character in a file with bash

Hello I have a problem in bash. i have a file and i am trying insert a point in the final line of each line: cat file | sed s/"\n"/\\n./g > salida.csv but not works =(. Because i need count ...
0
votes
2answers
49 views

Risk of unquoted bash parameters/variables

I recently read that it is dangerous to use unquoted parameter in bash scripts. I know that escaping is vital when it comes to SQL queries, but I don't see any problems with the following code (except ...
0
votes
1answer
27 views

Shell command for getting history of a specific command

I am looking for a command that shows what type of parameters are used earlier for the command I am using currently. For example, if I want to use the command say tail, can I see the list of commands ...
0
votes
1answer
39 views

Comparing an existing file with the result of a heavy process using named pipes

I'm trying to figure out a way to compare an existing file with the result of a process (a heavy one, not to be repeated) and clobber the existing file with the result of that process without having ...
0
votes
1answer
13 views

Send multi word string in expect script

First of all, I'm new to expect scripting... I'm using RHEL 5.6 Linux. I want to call an expect script out from a bash script and pass it two arguments, a subject and a body variable (read from a ...
1
vote
2answers
33 views

grep count of a string with a filter condition

I need to do a grep count of a string with a filter condition . The context is Data will be genearetd in the below format in our log files 2013-05-17 10:06:40,693[qtp1957835280-12 Selector1] ...
0
votes
0answers
18 views

GTK2{NOTEPAD} in BASH(ubuntu-10.04)::redirect VALUES(RC) in HASH using BASH FUNCTION

General_::Using GTK2 calling by bash V>=4.0 Specific__:: Using a GTK{notepad}, collecting some Parameters and show output on last page of notepad. Using a Hash (declare -A HxDATA) saving all ...
0
votes
2answers
22 views

How does MySQL take variables in bash?

Making a script to print out data from a MySQL db via bash, I met the following problem: While I try to log in, it uses the password as the database to log in to. Script is like this: #!/bin/bash ...
0
votes
1answer
30 views

Bash scripting and gdal - how to refer to elements in an array variable?

I am trying to use gdal in a bash script. I have several input raster files, in ENVI format, in different directories, and want to give new outputnames, in GTiff format. The idea is then to run the ...

1 2 3 4 5 443