Tagged Questions
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 ...
0
votes
2answers
22 views
Invoke nested shell scripts from ssh
I have two shell scripts; let's call those script1 and script2.
Within script1 I invoke script2. When I call script1 from my local terminal it work fine, but when I launch this command by ssh like ...
-3
votes
0answers
10 views
Building a script to clean out outdated user folders
I have a site where we have uploaded over 108,000 users and the photo folders that pertain to each user. I want to take a "list" of folder names - i guess put it into an array and then have that ...
0
votes
2answers
33 views
Scroll linux shell script output without piping
I have a linux bash script.sh. I can easily scroll the output like this:
$ ./script.sh | less
But how do I make the output display scrollable automatically, without having to pipe it through ...
0
votes
1answer
50 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
3answers
45 views
Shell Script to replace multiple instances of unix timestamps in a file
I have a file which has data similar to the following:
> <Element
> Stream="12"
> Target_trans="133106"
> Trans="48467"
> fileModTime="1358349304"
...
0
votes
2answers
39 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 ...
1
vote
2answers
25 views
variable does not store value while running script from root (unix)
Output variable does not store value of "pbrun tsm_support.ksh -c $i" command while running this script though root.
#!/bin/bash
set -x
for i in `cat /home/unixlist.txt`
do
output=$(pbrun ...
0
votes
2answers
39 views
UNIX newbie: shell script not running, command not found
I am very, very new to UNIX programming (running on MacOSX Mountain Lion via Terminal). I've been learning the basics from a bioinformatics and molecular methods course (we've had two classes) where ...
1
vote
2answers
27 views
bash: script that allows user to change directory based on ouput from another program
Background:
This question is about using the cd command in a bash script or alias.
There is a related SO question here: Why doesn't "cd" work in a bash shell script?
Problem:
Suppose ...
0
votes
1answer
35 views
Using special “replace” characters in a bash script
I want to use the !!, !$,^abc^cde, etc. aliases in a bash script.
Sadly, I cant seem to make them work in a script (They work just fine in interactive mode),
Does anybody know what the problem is? If ...
2
votes
0answers
46 views
mount -t ntfs-3g /dev/sda1 /mnt/crypto/ -oencryption=aes-256 [closed]
I am trying to dabble in some bash shell scripting and have a normal function I would like to automate, if possible. The scenario is as follows:
I have an external hard drive with aes 256 ...
0
votes
1answer
32 views
Nested pipe output in function
I am trying to make a script that will output system information using several functions that call each other. Can someone tell me what's wrong with how the piped commands' I/O is handled?
...
0
votes
1answer
35 views
how to connect to 2 ftp servers using shell script
I have to copy file from one FTP location to other FTP location ? can i do it using shell script ?
I have tried this
But for this i have to excute the script as source location
Copy files from ...
0
votes
2answers
47 views
Macxchange Script to Change MAC and Hostname in ubuntu 12.04
I'm trying to adapt a script in backtrack to work with ubuntu. I keep getting an error on line 14 which is the "if [ $? == 0 ]; then" line
the script was found on ...
0
votes
2answers
38 views
Including sub-parameters in help options to execute wisely?
I am writing a script which can choose a file and print specific content. For example,
san#./script.sh
Expected Usage : ./script.sh --file1 --dns
(Here it checks for file1, search for dns name and ...
2
votes
4answers
36 views
Bash: Find number in strings and add them
I have a text file title 'results' and it contains
[ PASSED ] 11 tests.
[ PASSED ] 590 tests.
[ PASSED ] 1231 tests.
[ FAILED ] 4 tests.
[ FAILED ] 500 tests.
I would like to add the ...
0
votes
1answer
46 views
Getting a Process ID & Assigning to a Variable in a Bash Script
I have an interesting situation. All code here is a functional pseudo-code example of the exact issue I am facing so no jokes about assign the output of date. I actually want to capture the output of ...
0
votes
3answers
35 views
Unix scripting whoami/$USER not working as desired
Hi I have the script as below.
if [[ 'whoami' -eq "test" ]]; then
echo "test user"
else
echo "Not a test user"
fi
This is returning test user even if my user is not text. It would be ...
0
votes
2answers
35 views
process count discrepancy for Linux
The following is a script:
$ cat test.sh
#!/bin/sh
echo ------------------------
date
OCCURANCE=`ps -ef|grep "test.sh" | grep -vc grep`
ps -ef|grep "test.sh" | grep -vc grep
ps -ef|grep "test.sh" | ...
1
vote
2answers
84 views
String comparison not working in Powershell function - what am I doing wrong?
Okay, I'm a powershell newbie, and probably making a stupid mistake; hopefully someone here can sort me out in a hurry. What I'm trying to do is make an alias of git commit which also logs the message ...
1
vote
2answers
66 views
Securely execute shell script via website
I'm trying to run a shell script using php exec.
The thing is - this isn't very secure as I am posting to it via a html text box i.e.
<?php
$output = shell_exec ('whois '.$_POST['domain']);
echo ...
0
votes
6answers
42 views
Remove part of the path in shell
echo "/dir1/dir2/filename.txt" | sed ????
What should be the Sed expression to get the output as
/dir1/filename.txt
If there is any other simpler way to achieve this, that is also welcome.
0
votes
0answers
68 views
How to run regression test cases through oracle database from shell script
Before I begin, I would just like to clarify that I am completely new to shell scripting and fairly new to databases. To give some more detail into the question:
I have to basically build a ...
-1
votes
1answer
55 views
Bash shell scripting for answering the questions of SSH key generation
I want to answer the question of that appear in the bash shell
Ex:
at the script
#!/bin/bash
ssh-keygen -t rsa
#it will appear a question >> Enter file in which to save the key
# ...
1
vote
2answers
40 views
Going into directory using bash variable
I have the following functions in my ~/.bash_aliases file
mycd() {
dir=$(cat)
echo "$dir"
cd "$dir"
}
alias c=mycd
and
gotoD() {
find -name $1 -type $2 | awk '{ print $0 }' | sort -k2 | ...
1
vote
2answers
61 views
need to set environment var for a back-ticks command
how to pass an environment variable to a shell command that I execute using Kernel#system et al?
say, I want to run
%x{git checkout -f}
but this command relies on the environment variable ...
0
votes
2answers
46 views
Filter “bad path” results in mdfind
Okay, so I have a script that is running a command to get a list of file-names, however some of them might not actually exist. What I'd like to do is filter this list through a pipe and remove any ...
2
votes
2answers
57 views
Bash: Spliting string based on some delimiter and storing each in a variable
113050050/CS101/mysql_java.pdf
the above is my string, which is stored in a variable 'line'
line="113050050/CS101/mysql_java.pdf"
Now I want to split $line based on delimiter / and store each ...
0
votes
1answer
59 views
How can I run multiple UNIX commands, using an input file, just once
I'm relatively novice in Unix Shell Scripting.
How can I run the (following) multiple UNIX commands (put into a script, say "discover.sh", using my_log.txt input-file just once? Eventually, I would ...
1
vote
1answer
32 views
Linux scipt variable is not recognized properly
I have a question about shell scripting in Linux.
I've been trying to get this code working for hours now, and it does something I don't understand. The purpose of the code would be to add users with ...
0
votes
2answers
65 views
bash script to copy file into multiple specified directories
I'm looking to create a script that takes a file and copies the file to multiple directories
e.g. cp2dir filename dir1/ dir2/ dir3/
I've dug around and it looks like my route is to use cat ...
4
votes
1answer
60 views
In Bash how do you see if a string is not in an array?
I'm trying to do this without adding additional code, such as another for loop. I can create the positive logic of comparing a string to an array. Although I want the negative logic and only print ...
0
votes
1answer
40 views
Prevent / Avoid ^M in linux/unix script
i have script like this below : testing.sh
#!/bin/bash
while read inputline
do
plugin="$(echo $inputline | cut -d, -f 3-)"
echo \"$plugin\" > test1.out
done < $1
exit 0
...
1
vote
5answers
63 views
Alternate merge strings in BASH
From
KS=$(locate acpi-support | grep "/etc/rc" | cut -f4 -d/ | tr -dc '[K,S]')
LEVELS=$(locate acpi-support | grep "/etc/rc" | cut -f3 -d/ | tr -dc '[0-9]')
echo $KS
echo $LEVELS
I get the ...
-1
votes
0answers
163 views
Need help on uploading a file to a webpage link using a bash script
Could some help me in a bash script.purpose of which is to write a script?
Which Should take a file ( lets say /tmp/xyz) and upload to web page .
I have tried to do it by using curl --upload-file but ...
0
votes
3answers
584 views
arithmetic expression: expecting EOF: “008 +1”
My script ./make_shift_ln_o_dummy.sh:
for i in `seq -w 0 272`
do
y=0
x=1
echo $i
y=$(($i +$x))
echo $y
done
My output with error message:
arithmetic expression: expecting EOF: "008 +1"
000
1
001
...
4
votes
4answers
4k views
Arrays, linked lists and other data structures in cmd.exe (batch) script
I was playing with cmd.exe, but in its help I didn't find any info, how to define arrays.
I have found, how to define simple variables:
set a = 10
echo %a%
But, I want to create arrays, linked ...
13
votes
9answers
7k views
unix - head AND tail of file
Say you have a txt file, what is the command to view the top 10 lines and bottom 10 lines of file simultaneously?
i.e. if the file is 200 lines long, then view lines 1-10 and 190-200 in one go.
13
votes
7answers
15k views
bash - subtract 2 variables
I have the script below to subtract the counts of files between 2 directories but the COUNT= expression does not work, what is the correct syntax?
#!/usr/bin/env bash
FIRSTV=`ls -1 | wc -l`
cd ..
...
6
votes
5answers
3k views
How do I merge one directory into another using Bash?
I'm looking for shell script that merge files from one directory into another.
Sample:
html/
a/
b.html
index.html
html_new/
a/
b2.html
b.html
Usage:
./mergedirs.sh html ...
3
votes
5answers
3k views
How can I write a tiny Bash shell script to repeat an action every 5 seconds?
I want to copy a file from one location to another every five seconds. I don’t want to set up a cronjob because this is only temporary and needs to be fully under my control.
Can I write a .sh that ...
39
votes
13answers
31k views
windows batch: sleep
How do I get a windows batch script to wait a few seconds? sleep and wait don't seem to work (unrecognized command).
43
votes
6answers
20k views
Copy folder recursively, excluding some folders
I am trying to write a simple bash script that will copy the entire contents of a folder including hidden files and folders into another folder, but I want to exclude certain specific folders. How ...
28
votes
8answers
24k views
bash shell scripting combining *.txt into one file
What is the quickest and most pragmatic way to combine all *.txt file in a directory into one large text file?
Currently I'm using windows with cygwin so I have access to BASH.
Windows shell command ...
9
votes
5answers
11k views
How can I delete duplicate lines in a file in Unix?
Is there way to delete duplicate lines in a file in Unix?
I can do it with sort -u and uniq commands. but I want to use sed or awk.
Is that possible?
4
votes
6answers
4k views
total size of group of files selected with 'find'
For instance, I have a large filesystem that is filling up faster than I expected. So I look for what's being added:
find /rapidly_shrinking_drive/ -type f -mtime -1 -ls | less
And I find, well, ...
272
votes
18answers
287k views
How do I split a string on a delimiter in bash?
How do I split a string based on a delimiter in Bash?
I have this string stored in a variable:
IN="bla@some.com;john@home.com"
Now I would like to split the strings by ';' delimiter so that I have
...
140
votes
11answers
127k views
How do I prompt for input in a Linux shell script?
I want to pause input in a shell script, and prompt the user for choices. The standard 'Yes, No, or Cancel' type question. How do I accomplish this at a typical bash prompt?
56
votes
8answers
34k views
How to resolve symbolic links in a shell script
Given an absolute or relative path (in a Unix-like system), I would like to determine the full path of the target after resolving any intermediate symlinks. Bonus points for also resolving ~username ...


