BASH vs PERL Advantages & Disadvantages


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting BASH vs PERL Advantages & Disadvantages
# 1  
Old 06-02-2008
BASH vs PERL Advantages & Disadvantages

Hi

Anyone can compare and contrast differences, Advantages & Disadvantages between BASH vs PERL

just a need few points on both

Thanks
# 2  
Old 06-02-2008
Quote:
Originally Posted by karthikn7974
Hi

Anyone can compare and contrast differences, Advantages & Disadvantages between BASH vs PERL

just a need few points on both

Thanks
Hi,
Perl uses more resources but can do a lot more with less hastle then bash.
I would use bash for a "light scripting" ...
# 3  
Old 06-02-2008
perhaps, if you are doing system programming or administration, then
bash (ksh93) has a more natural and native set of keywords and
semantics, as the underlying command line shell.

if one's task involves lots of data processing requiring complex
data structures, then perhaps Perl would be worth the extra
trouble^h^h^h^h^h^h^h richness.
# 4  
Old 06-03-2008
For anything involving mainly the manipulation of files, external commands, or processes, I'd use Bash (or, more correctly, a shell script). For anything involving mainly the manipulation of structured data, I'd use Perl. For anything involving both, I'd use both (to the extent that the problem isn't so simple that you can handle it with sed or awk; and even then, Perl is often a good choice).

Perl has a lot of strengths specifically because it was designed as a glue language to "fill in the gaps" where system calls or data structures were not straightforward to handle with existing tools; arguably, the end result isn't always very elegant, but it often gets the job done where previously you would have had to resort to a small custom C program.
# 5  
Old 01-10-2009
thanks to all

and belated new year wishes to all unix.com members.

Regards
KARTHIK
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Solaris 10 Failsafe mode advantages and disadvantages

Hi Guys, Have you tried running Solaris 10 on Failsafe mode? What are their advantages and disadvantages? What would you recommend for a roll-back plan in case something happens after failsafe mode? I need to run on failsafe mode to be able to execute fsck. Appreciate your kind... (1 Reply)
Discussion started by: bocha
1 Replies

2. Shell Programming and Scripting

[Solved] BASH - chaining TEST and COMMAND with && and II

Can you explain what this line of script is doing. What I have understood is : -- variable C is the name of a software which is either not installed, so it must be installed or allready installed and then should be update if newer version found -- branch B="$B $C" is to install the software --... (4 Replies)
Discussion started by: jcdole
4 Replies

3. UNIX for Dummies Questions & Answers

What are some advantages of Unix?

What are some advantage's of Unix (3 Replies)
Discussion started by: alvin2132
3 Replies

4. Shell Programming and Scripting

Find & Replace string in multiple files & folders using perl

find . -type f -name "*.sql" -print|xargs perl -i -pe 's/pattern/replaced/g' this is simple logic to find and replace in multiple files & folders Hope this helps. Thanks Zaheer (0 Replies)
Discussion started by: Zaheer.mic
0 Replies

5. Shell Programming and Scripting

passing variable from bash to perl from bash script

Hi All, I need to pass a variable to perl script from bash script, where in perl i am using if condition. Here is the cmd what i am using in perl FROM_DATE="06/05/2008" TO_DATE="07/05/2008" "perl -ne ' print if ( $_ >="$FROM_DATE" && $_ <= "$TO_DATE" ) ' filename" filename has... (10 Replies)
Discussion started by: arsidh
10 Replies

6. Shell Programming and Scripting

advantages of Perl ?

What is the advantages of Perl in Unix environnement. Is it for scripts ? Text manipulation ? Have you a Concrete exemple of perl utilisation. Thanks you (3 Replies)
Discussion started by: simquest
3 Replies

7. UNIX for Dummies Questions & Answers

Advantages of Groups

What are the advantages of putting users into groups? I understand that in a corporate environment, you should create a group for each department. ie: putting finance employees into a finance group. But are there any system advantages for doing that? How would it make it easier on the system... (3 Replies)
Discussion started by: kurtmc
3 Replies

8. UNIX for Dummies Questions & Answers

Linux advantages?

Hello to help me with my studying of unix/linux outside of work I was thinking of installing Linux at home aswell as using Windows XP. Im pretty new to Linux and Unix, could someone tell me the possible benifits or even negatives of running Linux at home as an opperating system as opposed to... (2 Replies)
Discussion started by: Loaded Gun
2 Replies

9. UNIX Desktop Questions & Answers

what is the difference between Unix & linux, what are the advantages & disadvantages

ehe may i know what are the difference between Unix & Linux, and what are the advantages of having Unix as well as disadvantages of having Unix or if u dun mind i am dumb do pls tell me what are the advantages as well as the disadvantages of having linux as well. thanks (1 Reply)
Discussion started by: cybertechmkteo
1 Replies
Login or Register to Ask a Question