Can we use aliased commands in script?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Can we use aliased commands in script?
# 15  
Old 01-12-2006
Than you very much for ur help... Thanks a lot

Some where i read that if we use $* in the script the that will be applicable for all the arguments individually... i.e in our case if we give

t1.sh 1 2

my intension is it has to execute like

ech1 DONE
ech2 DONE.. but this is not happening...can u guide me in this aspect...
# 16  
Old 01-12-2006
Thanks a lot mahendra..

now i am able to meet my requirements with for loop ... but one small doubt.. the script is working fine with out any errors only iff first liune of script is

"#!/usr/bin/ksh"..

it is not working if i use

"#!/usr/bin/bash"

... can u please fine time explain me the reason..
# 17  
Old 01-12-2006
reason could be that u could be using solaris.. not linux.. is that so?
# 18  
Old 01-12-2006
I bliv you need to use the alias -x. This is an exported alias, which is exported to all shells and sub shells. try using alias -x, but again I am not sure if all shells support the -x flag.
# 19  
Old 01-13-2006
alias with -x option is not working...

Bourne...
How can we know whether it is solaris or linux..
# 20  
Old 01-13-2006
use the command uname. for details use uname -a
dunno if the model command works on solaris, try that as well. it gives more detailed hardware specd of the server. it works with HP-UX, not sure bt solaris tho.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Using commands within bash script

The purpose of enclosed script is to execute selected command and output success or failure in whiptail msgBox Works as expected when command returns zero to msgBox. I cannot figure out how to continue / automate my script when command expects reply to continue / terminate. I am doing it... (2 Replies)
Discussion started by: annacreek
2 Replies

2. UNIX for Dummies Questions & Answers

UNIX commands for a script that I need

Hello. I need help trying to create a script in UNIX to do the following steps. I don't know which commands to input to achieve this. 1. In a directory tree, I want to duplicate all .txt files into the same directory, so 2 of each file exists in each directory where there is a .txt file ... (4 Replies)
Discussion started by: TitanTlaloc
4 Replies

3. Shell Programming and Scripting

Issue commands within script

What is the best way of having a script that has it's own commands, which can be called at any stage in the script. I'm sure there is a technical term for this type of CLI app which can help my search but I can't remember it. Is using trap the best way of doing this. (6 Replies)
Discussion started by: cue
6 Replies

4. Shell Programming and Scripting

Commands in background in a script

Hi, I was writing a script for backup,however i stumbled upon this.( As i mentioned in my earlier posts iam a beginner in shell scripting). Here is a piece of code case $DB_STAT in OFFLINE) echo "Service $SID currently $DB_STAT" ... (1 Reply)
Discussion started by: maverick_here
1 Replies

5. Shell Programming and Scripting

How to make a script out of commands

Hi, I have a very basic knowledge of Unix and I need your help for a small script that will do the following commands that I do manually by just giving the filename TPR20080414.txt cut -d'|' -f3,4 TPR20080414.txt> oe_012.lkp awk -F "|" '{temp=$1;$1=$2;$2=temp}1' OFS="|" oe_012.lkp >... (3 Replies)
Discussion started by: sickboy
3 Replies

6. Shell Programming and Scripting

running commands from script

I'm new to unix and I have a fairly simple problem: Lets say I am in a specific directory and I run the command: "dirs" , I get an output of all the folders that i pushed into the stack (as expected), buut, when when I create a script (called test): #! /bin/csh dirs and then i run:... (2 Replies)
Discussion started by: owijust
2 Replies

7. Shell Programming and Scripting

Repeating commands in a script

I have written a script that I want to be repeated. The script that I wrote outputs the date, how many people are on the system, how many people logged in before me, and how many people logged in after me. Than what I want it to do is after it outputs the 4 lines I want it to go back to the... (4 Replies)
Discussion started by: Dave2874
4 Replies

8. UNIX for Dummies Questions & Answers

script commands

my bad (2 Replies)
Discussion started by: romeoz
2 Replies

9. Shell Programming and Scripting

vi Commands in a Script

Perhaps there is a better way to do this, but right now this is all I can think of. If there is a better way to do this, all suggestions are welcome. I would like to take a file and perform the following actions on it. 1. Search for CREATE TABLE 2. Copy that line and paste it one line... (7 Replies)
Discussion started by: djschmitt
7 Replies

10. Shell Programming and Scripting

calling a aliased variable

Issue: i have variable A which is an alias for variable B which is equal to "THIS IS A TEST" when every i echo variable A i only get the alias name for variable B, NOT the contents of variable B. HOSTNAME# echo $TESTIT + echo THIS IS A TEST THIS IS A TEST HOSTNAME# ls -l total... (10 Replies)
Discussion started by: Optimus_P
10 Replies
Login or Register to Ask a Question