Language of the script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Language of the script
# 1  
Old 04-23-2012
Language of the script

Hi,
Can you let me know in which language is the below scrip written.

Code:
@echo "*** PREINSTALL STARTED ***"
        @echo "---> Verify existence of top level directories and creating them "
        -$(INS) -d -m 755 $(DEST_PLUGIN_EXPORT_DIR)
        -$(INS) -d -m 755 $(DEST_PLUGIN_DOCS_DIR)
   main: 
        @echo "*** INSTALL STARTED ***"
        @echo "---> Copying Plugin files <------- "
        @cp $(SRC_PLUGIN_CFG_FILE) $(DEST_PLUGIN_WAS61_DIR)


Last edited by radoulov; 04-23-2012 at 09:20 AM..
# 2  
Old 04-23-2012
Makefile.
# 3  
Old 04-23-2012
HI,
Can you tell me the syntax of if else in makefile
# 4  
Old 04-23-2012
Now I'm in over my head. It's documented here though:

GNU `make'
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Feedback wanted for upcoming script language

Hi I'm currently rewriting a project from install-required to a pure runtime form. The former had required the project name and the definition of the command as name, as they all become functions now, this could be shorter. As you might have figured, the project already exists in another... (3 Replies)
Discussion started by: sea
3 Replies

2. Shell Programming and Scripting

Covert simple bash script in perl language

Hello, Anyone please covert this in perl language ######################## if ps faux | grep -v grep | grep ProcessXYZ then echo "$SERVICE is running, , everything is fine" exit 0 else echo "$SERVICE is not running" exit 2 fi Additional... (1 Reply)
Discussion started by: fed.linuxgossip
1 Replies

3. Shell Programming and Scripting

Very simple script using bash language

Dear AIXians, I have a task for very simple script, but I can't write it correctly :confused: I have a file called (out.txt), if any line of this file starts with the word 'ORA', it must send email, if the file (out.txt) don't have this word, so it do nothing. Please tell me how. ... (4 Replies)
Discussion started by: Mohannad
4 Replies

4. Programming

How to pass the command line arguments to the shell script in c language?

hi, I am new in the shell script, and c programming with linux. I am looking to pass the arguments in c program that should be executed by the shell script. e.g. #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv) { int i; for (i=1;i<argc; i++) { ... (2 Replies)
Discussion started by: sharlin
2 Replies

5. Shell Programming and Scripting

How can i run the shell script from ABAP programming language

I am in need to execute the Files transferring's shell script from ABAP programming language. it would be highly appreciated if you help me as quickly as possible. Thank you (28 Replies)
Discussion started by: Venkat1818
28 Replies

6. Web Development

Simple Script for Multiple Language Sitemaps

Someone asked me to post a very simple script for creating multiple language sitemaps from a vbseo generated sitemap for vbulletin. You will need to create the required directories, change the paths and website name as appropriate. This code could be easily wrapped in a simple while loop and... (0 Replies)
Discussion started by: Neo
0 Replies

7. UNIX for Dummies Questions & Answers

What script/language/command should i use?

This maybe the dumpiest question you've ever been asked..but i've been browsing, searching and understanding lots of information that i get from the internet..i'm confused that i might be in the wrong way in understanding it since i have to do a system that count and build up a statistics for a... (5 Replies)
Discussion started by: meggae
5 Replies

8. UNIX for Dummies Questions & Answers

Script Language Parser for Learning

I'm new to the UNIX world and have to learn scripting for my job. Presented with multiple scripts to learn (and then have to maintain in the future) is there a utility or process to input a script in it's native form and output what each line would look like fully parsed (i.e.: all variable names... (3 Replies)
Discussion started by: kcampb9
3 Replies

9. Programming

which language will be the best

Hello, Ive got to amke a script to calculate how many emails are in the servers mailbox, how many times each IP address appears in the mailbox and to search for keywords, tehn produce the results in HTML report. The thing is I dont know where to start and what the best language to use would be. ... (4 Replies)
Discussion started by: clueless
4 Replies
Login or Register to Ask a Question