Tagged Questions
0
votes
0answers
23 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
46 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 ...
0
votes
0answers
13 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 ...
0
votes
3answers
30 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
25 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
11 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
34 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
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
3answers
51 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
44 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
34 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
53 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
28 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
36 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
51 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
54 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
49 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
40 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
39 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
56 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
38 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
36 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
91 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
69 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
43 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.
-1
votes
1answer
58 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
41 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
63 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
49 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
59 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
63 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
33 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
72 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
64 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
41 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 ...
0
votes
2answers
56 views
Shell command on each line of file
I am trying to write a Perl script which will do the following:
1. Open a file which, in each line, contains the location of multiple files (Say File A, file B)
2. Do an egrep on each of these files ...
0
votes
1answer
73 views
Bash Script: How to use variables from list
I am trying to write a script that will report back the last time a file was updated in a folder. The folders are created everyday Example: /home/user/todaysdate. Inside todaysdate folder exsist that ...
0
votes
1answer
46 views
How to sequentially execute a command on every file in a directory?
I have a directory I'm polling through cron for new uploads and I'm
running a sequence of scripts on each upload.
one part of the program retrieves an image from the web using the name of the ...
1
vote
1answer
126 views
Bash shell Array manipulation
I have a small script which reads lines from a text file and stores them in an array.
#!/bin/bash
while read line
do
array+=("$line")
done < $1
for ((i=0; i < ${#array[*]}; i++))
do
echo ...
0
votes
1answer
34 views
How to get the desired output
I am getting an input from a shell script, something like:
USER1_OLD:USER1_NEW,USER2_OLD:USER2_NEW ....
The number of key pairs can vary. I need to get output like:
USER1_OLD,USER2_OLD,......
...
1
vote
1answer
97 views
Linux - Create sub-directories from file names in current directory
I have a list of files in a directory like below.
/file1 - filename1.txt
/file2 - filename2a.txt
/file2 - filename2b.txt
/file3 - filename3.txt
/file4 - filename4.txt
/file5 - filename5.txt
I am ...
1
vote
2answers
49 views
How start multiple rails app servers with a ruby script
I'm writing a ruby script to start more than one rails server, but I'm running into a few problems:
When I programmatically cd into different projects, their respective .rvmrc files aren't ...
0
votes
2answers
36 views
How to start another action in a shell script
Someone put this script on the net to check a website for event tickets. How can I modify it to start iTunes playing with osascript or play a system beep, etc. when this_year_count > 1? Can I send ...
2
votes
3answers
152 views
How do I check if an argument passed in a Shell script is NOT a number (integer)?
I know how to check if an argument is a number using:
if [[ $2 = *[[:digit:]]* ]]; then
# $2 is a number
else
# $2 is not a number
fi
However I want to check if the argument is NOT a number ...
0
votes
5answers
124 views
shell must parse ls -Al output and get last field (file or directory name) ANY SOLUTION
I must parse ls -Al output and get file or directory name
ls -Al output :
drwxr-xr-x 12 s162103 studs 12 march 28 2012 personal domain
drwxr-xr-x 2 s162103 studs 3 march 28 ...
0
votes
2answers
91 views
Bash script - String compare does not seem to work
I have an input file with contents in the following format:
ABCD XYZAB 1234
PQRSTUV STU SKIP
LMN OPRQM 8966
RSTUV OPM SKIP
TUV ZXU SKIP
I want to parse this file ...
0
votes
1answer
50 views
how to catch tab button in shell line?
I want create a script with default arguments, of manner how some commands display default arguments pressing tab button in linux
In first instance I want to catch the tab button with the command ...
-1
votes
1answer
72 views
Using bash to edit text file and display output
I have a text file with courses that looks like this:
csc 4567 - Computer Programming
This course is about stuff...blah blah blah
4.0000 credit hours
I need to write a bash script that takes the ...



