10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Not a good post. (1 Reply)
Discussion started by: bash_in_my_head
1 Replies
2. Shell Programming and Scripting
Hi,
I have a script which has 3 command line parameters.But sometimes it will also take 2 command line parameters or 1.How to do it?
I am using $1,$2... to specify the command line parameters.
The script which i have written is given below.
#!/bin/sh
echo "database="$1
echo... (3 Replies)
Discussion started by: arijitsaha
3 Replies
3. UNIX for Dummies Questions & Answers
hi again
question on how to change code so that script will prompt to enter parameter if they are missing. . .
code I have so far :
#!/bin/bash
two="200"
three=500
if ; then
echo " first line parameter is $one "
else
echo -n " first parameter is missing , please write... (2 Replies)
Discussion started by: me.
2 Replies
4. UNIX for Dummies Questions & Answers
hi,
This is actually realted to a Abinitio command in a unix script. my code is
#!/bin/ksh
GRAPH_NAME=$1
shift
air sandbox run $GRAPH_NAME $* > file.lst 2>&1
if ]; then echo "Pass"
fi
when i run this script with this command "script.ksh graph_name parameters"
the script... (1 Reply)
Discussion started by: siva1612
1 Replies
5. UNIX for Advanced & Expert Users
Hello
I want to hide command line parameters of my programs/scripts to not to be seen with 'ps' command.
How can I do that?
thanks in advance. (6 Replies)
Discussion started by: xyzt
6 Replies
6. UNIX for Advanced & Expert Users
I am running Putty 0.60 from Windows XP and I am connecting to a Linux box.
I would like to be able to pass a command line parameter to my Linux session so that my Linux session can execute a specific command, depending on the command line parameter. I have looked on the Internet and tried... (1 Reply)
Discussion started by: SFNYC
1 Replies
7. UNIX for Dummies Questions & Answers
Iam running a report(.rdf) file from UNIX command line.
using the following syntax
for eg xxx.rdf is the report rdf
ar60run batch=yes userid=username/paswd@database report=xxx.rdf destype=file desname=xxx.dat
now i need to submit this with three pameters
pls suggest (1 Reply)
Discussion started by: sreenusola
1 Replies
8. Shell Programming and Scripting
Hi ,
I have a piece of code ...wherein I need to assign the following ...
1) A command line argument to a variable
e.g origCount=ARGV
2) A unix command to a variable
e.g result=`wc -l testFile.txt`
in my awk shell script
When I do this :
print "origCount" origCount --> I get the... (0 Replies)
Discussion started by: sweta_doshi
0 Replies
9. Shell Programming and Scripting
I couldn't find an existing thread that addressed this question, so hopefully this isn't redundant with anything previously posted. Here goes:
I am writing a C-Shell script that runs a program that takes an arbitrary number of parameters:
myprog -a file1 \
-b file2 \
-c file3 ... \
-n... (2 Replies)
Discussion started by: cmcnorgan
2 Replies
10. Shell Programming and Scripting
All,
I have a sh script of the following tune:
function a () { #functionality.. }
function b () { #functionnlity.. }
function check () { # this function checks for env and if all fine call build }
function usage () { #sh usage details }
function build () { #calls either a or b or... (5 Replies)
Discussion started by: vino
5 Replies