Sponsored Content
Top Forums Shell Programming and Scripting Conversion of Perl Script to Shell Script.. Post 302930594 by ongoto on Monday 5th of January 2015 07:13:15 PM
Old 01-05-2015
What's this WE crap. You are the only one shouting down Perl (and me) and perpetuating this mess.
And what's wrong with modules? That's boat loads of code that coders dont have to write, again. All languages have reusable libraries for cryin' out loud. Where's the fault in that? You want to strip a language of it's features and then call it useless?

I haven't reported any issues with anyone's code either. Where are you coming from? I don't claim to know it all. I learn something everyday here. And if I can help someone develop their own skill set, I will, whether you like it or not. If you check my posts you'll see that I do know some Bash, and some Perl and Python, and some C. It's no match for what you produce though, is it?

My points:
Bash has it's place, and so does Perl.

Chill out!

P.S. If you're going to quote me, punk, do it right...
Quote:
With respect to the shell's versatility, notice that Chubler_XL took the time and went to the trouble of converting the OPs script (post #19). Good job Chubler_XL. Whether it will handle just about any kind of data you throw at it remains to be seen.

Last edited by ongoto; 01-06-2015 at 10:42 AM.. Reason: P.S.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Conversion of bash parsing script to perl?

I need help with a perl parsing script. I have some error logs on a windows machine that I need to parse from a text file, but I know nothing about perl. I usually run this bash script on my linux box and it does just what I need. How would I do the same thing with perl and port it to my windows... (2 Replies)
Discussion started by: cstovall
2 Replies

2. Shell Programming and Scripting

Help me with file conversion [Shell Script]

Hello Group, I request your help with a shell script for filter an ascii file (this is small piece of the file): 09/24/2009,00:00,1.0268,1.0268,1.0249,1.0250,518 09/24/2009,01:00,1.0251,1.0261,1.0249,1.0259,424 09/24/2009,02:00,1.0258,1.0272,1.0258,1.0269,372... (3 Replies)
Discussion started by: csierra
3 Replies

3. Shell Programming and Scripting

Encoding conversion in PERL script

I have oracle 9i database installed with UTF-8 Encoding. I want a perl script that converts unicode to utf8 before commiting in database and utf8 to unicode when retreiving from database For example : the word Ïntêrnatïônàlîzâtion has to be stored in database as Internationalization and when retreived... (6 Replies)
Discussion started by: vkca
6 Replies

4. AIX

Need timestamp conversion shell script !!

Can anyone provide me with a ksh or bash script which will accept a timestamp (format is YYYY-MM-DD-HH24.Mi.Ss) and time offset (in hours). The output will be (timestamp passed - time offset passed deducted from it) in the same YYYY-MM-DD-HH24.Mi.Ss format. Basically I am trying to convert the... (1 Reply)
Discussion started by: shibajighosh
1 Replies

5. Shell Programming and Scripting

shell or perl script needed for ldif file to text file conversion

This is the ldf file dn: sdcsmsisdn=1000000049,sdcsDatabase=subscriberCache,dc=example,dc=com objectClass: sdcsSubscriber objectClass: top postalCode: 29600 sdcsServiceLevel: 10 sdcsCustomerType: 14 givenName: Adelia sdcsBlackListAll: FALSE sdcsOwnerType: T-Mobile sn: Actionteam... (1 Reply)
Discussion started by: LinuxFriend
1 Replies

6. Shell Programming and Scripting

Conversion batch shell script

while converting batch file to shell script ...dis command is ther i dunno how to change...can anyone knws how to change into shell script rm !(D:\temp\XX.txt) (3 Replies)
Discussion started by: monisha
3 Replies

7. Shell Programming and Scripting

Help required for Oracle database shutdown script conversion from shell to perl

Please tell me how to convert below program from shell script to perl. Same commands need to use in shutdown, just need program help for startup. export ORACLE_BASE=/home/oracle1 lsnrctl start lndb1 sqlplus '/ as sysdba' startup; (2 Replies)
Discussion started by: learnbash
2 Replies

8. Shell Programming and Scripting

Batch to shell script conversion

Hi All, I have a small tool which is currently configured in batch scripts only. But my need is to run it on Linux platform, so I have been trying to convert a batch script to shell script. below is the batch script: @echo off IF "%1"== "" GOTO ARGERR REM UPDATE THESE PROPERTIES TO... (2 Replies)
Discussion started by: sukhdip
2 Replies

9. UNIX for Beginners Questions & Answers

powershell script to unix shell script conversion.

Here is a powershell script to use restful API to create ticket in our ticketing tool. Can anyone please convert it to a shell script sothat, I can run it in Unix servers, below is the code: $body = @{ Customer= ''test' Summary= 'test summary' Impact= '4-Minor/Localized' ... (2 Replies)
Discussion started by: pandeybhavesh18
2 Replies

10. UNIX for Beginners Questions & Answers

Shell script ouput conversion

Hi All, I am trying to print all the packages info in solaris 11 using below script. #!/usr/bin/env bash pkginfo -l | egrep '(BASEDIR|NAME|VERSION)' | awk '{print}' > /tmp/cp1 /usr/bin/nawk -F: ' {for (i=1; i<=NF; i++) {gsub (/^ *| *$/, "", $i) ... (5 Replies)
Discussion started by: sravani25
5 Replies
PERLUTIL(1)						 Perl Programmers Reference Guide					       PERLUTIL(1)

NAME
perlutil - utilities packaged with the Perl distribution DESCRIPTION
Along with the Perl interpreter itself, the Perl distribution installs a range of utilities on your system. There are also several utili- ties which are used by the Perl distribution itself as part of the install process. This document exists to list all of these utilities, explain what they are for and provide pointers to each module's documentation, if appropriate. DOCUMENTATION perldoc The main interface to Perl's documentation is "perldoc", although if you're reading this, it's more than likely that you've already found it. perldoc will extract and format the documentation from any file in the current directory, any Perl module installed on the system, or any of the standard documentation pages, such as this one. Use "perldoc <name>" to get information on any of the utilities described in this document. pod2man and pod2text If it's run from a terminal, perldoc will usually call pod2man to translate POD (Plain Old Documentation - see perlpod for an explana- tion) into a manpage, and then run man to display it; if man isn't available, pod2text will be used instead and the output piped through your favourite pager. pod2html and pod2latex As well as these two, there are two other converters: pod2html will produce HTML pages from POD, and pod2latex, which produces LaTeX files. pod2usage If you just want to know how to use the utilities described here, pod2usage will just extract the "USAGE" section; some of the utilities will automatically call pod2usage on themselves when you call them with "-help". podselect pod2usage is a special case of podselect, a utility to extract named sections from documents written in POD. For instance, while utili- ties have "USAGE" sections, Perl modules usually have "SYNOPSIS" sections: "podselect -s "SYNOPSIS" ..." will extract this section for a given file. podchecker If you're writing your own documentation in POD, the podchecker utility will look for errors in your markup. splain splain is an interface to perldiag - paste in your error message to it, and it'll explain it for you. roffitall The "roffitall" utility is not installed on your system but lives in the pod/ directory of your Perl source kit; it converts all the documentation from the distribution to *roff format, and produces a typeset PostScript or text file of the whole lot. CONVERTORS To help you convert legacy programs to Perl, we've included three conversion filters: a2p a2p converts awk scripts to Perl programs; for example, "a2p -F:" on the simple awk script "{print $2}" will produce a Perl program based around this code: while (<>) { ($Fld1,$Fld2) = split(/[: ]/, $_, 9999); print $Fld2; } s2p Similarly, s2p converts sed scripts to Perl programs. s2p run on "s/foo/bar" will produce a Perl program based around this: while (<>) { chomp; s/foo/bar/g; print if $printit; } find2perl Finally, find2perl translates "find" commands to Perl equivalents which use the File::Find module. As an example, "find2perl . -user root -perm 4000 -print" produces the following callback subroutine for "File::Find": sub wanted { my ($dev,$ino,$mode,$nlink,$uid,$gid); (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) && $uid == $uid{'root'}) && (($mode & 0777) == 04000); print("$name "); } As well as these filters for converting other languages, the pl2pm utility will help you convert old-style Perl 4 libraries to new-style Perl5 modules. Administration libnetcfg To display and change the libnet configuration run the libnetcfg command. Development There are a set of utilities which help you in developing Perl programs, and in particular, extending Perl with C. perlbug perlbug is the recommended way to report bugs in the perl interpreter itself or any of the standard library modules back to the develop- ers; please read through the documentation for perlbug thoroughly before using it to submit a bug report. h2ph Back before Perl had the XS system for connecting with C libraries, programmers used to get library constants by reading through the C header files. You may still see "require 'syscall.ph'" or similar around - the .ph file should be created by running h2ph on the corre- sponding .h file. See the h2ph documentation for more on how to convert a whole bunch of header files at once. c2ph and pstruct c2ph and pstruct, which are actually the same program but behave differently depending on how they are called, provide another way of getting at C with Perl - they'll convert C structures and union declarations to Perl code. This is deprecated in favour of h2xs these days. h2xs h2xs converts C header files into XS modules, and will try and write as much glue between C libraries and Perl modules as it can. It's also very useful for creating skeletons of pure Perl modules. dprofpp Perl comes with a profiler, the Devel::DProf module. The dprofpp utility analyzes the output of this profiler and tells you which sub- routines are taking up the most run time. See Devel::DProf for more information. perlcc perlcc is the interface to the experimental Perl compiler suite. SEE ALSO perldoc, pod2man, perlpod, pod2html, pod2usage, podselect, podchecker, splain, perldiag, roffitall, a2p, s2p, find2perl, File::Find, pl2pm, perlbug, h2ph, c2ph, h2xs, dprofpp, Devel::DProf, perlcc perl v5.8.0 2003-02-18 PERLUTIL(1)
All times are GMT -4. The time now is 09:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy