Quick Perl "s2p" Commandline Q . . .


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Quick Perl "s2p" Commandline Q . . .
# 1  
Old 11-09-2014
Quick Perl "s2p" Commandline Q . . .

Greetings!

Looking to clear up a rather simple matter which seems to nonetheless elude me: How does one call Perl's s2p from the commandline? I've tried such as this:
Code:
perl -e s2p '-i 's/first/last/g' ./somefile.txt'

...to convert a similarly-formed GNU sedline over to the Perl equivalent (without much luck).

What is the basic formatting/syntax I might be missing here?

Thanks a bunch!
# 2  
Old 11-09-2014
man s2p or s2p -h or perldoc.perl.org

Code:
s2p -e 's/first/last/g'

This User Gave Thanks to Aia For This Post:
# 3  
Old 11-09-2014
@Aia:

Yikes!

Looking at the output for this example reminds me of the reams of paperwork which went along with simple loose logic devices for mil-spec before the world went "COTS."

(Thank goodness for the old "backtick trick" in most cases with sed/Perl Smilie )

Good to have know-how here anyway; and many thanks again --
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

Apache 2.4 directory cannot display "Last modified" "Size" "Description"

Hi 2 all, i have had AIX 7.2 :/# /usr/IBMAHS/bin/apachectl -v Server version: Apache/2.4.12 (Unix) Server built: May 25 2015 04:58:27 :/#:/# /usr/IBMAHS/bin/apachectl -M Loaded Modules: core_module (static) so_module (static) http_module (static) mpm_worker_module (static) ... (3 Replies)
Discussion started by: penchev
3 Replies

2. Web Development

Quick Fix for Google Search Console "Page is not mobile friendly"

Over the past 10 plus years, we have countless posts where the user did not use CODE tags or they used ICODE tags incorrectly. This has has the results of this site penalized by Google for having pages which are "not mobile friendly". So, working quietly in the background, in the thankless... (0 Replies)
Discussion started by: Neo
0 Replies

3. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

4. UNIX for Advanced & Expert Users

Genisoimage "Read-Only" Commandline?

Greetings. I have a question concerning the proper formation of a genisoimage commandline to prohibit write-back behavior to the original source files. Consider the following typical usage example:genisoimage -r -V "Some_Name" -cache-inodes -J -l -b isolinux/isolinux -c isolinux/boot.cat... (10 Replies)
Discussion started by: LinQ
10 Replies

5. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

6. Shell Programming and Scripting

Perl failure with "main::$fn" used only once:" in error logs

Hi all, Can anyone guess why this is happening? I am new to Perl, so please help me to fix this error: - I have a static html file which calls the cgi-perl script. HTML Code: <html> <head> <title> Hey Dude! </title> </head> <body> <form method="POST"... (3 Replies)
Discussion started by: bashily
3 Replies

7. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

8. Shell Programming and Scripting

quick question about "cut"

Ive looked in the man page but i cant find the answer to this (probably simple) question i want to cut -d: -f2 to infinity ? ive tried cut -d: -f2-$ and cut -d: -f2-* Neither of which work, I ended up putting a silly number at the end to cover myself cut -d: -f2-10000000 ... (2 Replies)
Discussion started by: hcclnoodles
2 Replies

9. UNIX for Dummies Questions & Answers

Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`"

Hi Friends, Can any of you explain me about the below line of code? mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'` Im not able to understand, what exactly it is doing :confused: Any help would be useful for me. Lokesha (4 Replies)
Discussion started by: Lokesha
4 Replies
Login or Register to Ask a Question