Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sepl(1p) [debian man page]

SEPL(1p)						User Contributed Perl Documentation						  SEPL(1p)

NAME
"sepl" -- a Term::ReadLine-based Sepia interactive shell. SYNOPSIS
$ sepl Type ",h" for help, or ",q" to quit. main @> substr "hello, japh", 7 'japh' main @> DESCRIPTION
"sepl" uses Sepia::ReadLine to provide an interactive Perl shell with many of the Sepia features available in Emacs, including completion and all shortcuts. It is not well-tested or frequently used, and should be considered experimental. SEE ALSO
Sepia, Term::ReadLine. Most of "Sepia"'s documentation is installed in Emacs' "info" format. On most systems it can be read from the command-line by typing ""info sepia"". AUTHOR
Sean O'Rourke, <seano@cpan.org> Bug reports welcome, patches even more welcome. COPYRIGHT
Copyright (C) 2010-2011 Sean O'Rourke. All rights reserved, some wrongs reversed. This module is distributed under the same terms as Perl itself. perl v5.14.2 2011-11-15 SEPL(1p)

Check Out this Related Man Page

Term::ReadLine::Zoid::Emacs(3pm)			User Contributed Perl Documentation			  Term::ReadLine::Zoid::Emacs(3pm)

NAME
Term::ReadLine::Zoid::Emacs - a readline emacs mode SYNOPSIS
This class is used as a mode under Term::ReadLine::Zoid, see there for usage details. DESCRIPTION
This mode provides some emacs key-bindings, taking the bash(1) implementation as a reference. This module also provides a 'emac_multiline' key map. KEY MAPPING
These bindings are additional to those in Term::ReadLine::Zoid which already contains some emacs key bindings. escape, ^[ (prefix_meta) meta-f (forward_word) meta-b (backward_word) ^X^V (switch_mode_command) Enter (vi) command mode. Taken from zsh(1). ^V, ^Q (quoted_insert) Insert next key literally, ignoring any key-bindings. WARNING: control or escape chars in the editline can cause unexpected results TODO
Get count args right (see bash reference) A lot more bindings A emacs multiline mode AUTHOR
Jaap Karssenberg (Pardus) <pardus@cpan.org> Copyright (c) 2004 Jaap G Karssenberg. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Term::ReadLine::Zoid perl v5.8.7 2005-08-07 Term::ReadLine::Zoid::Emacs(3pm)
Man Page

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Updating specific fields with awk using conditions

Can someone help me again, I think with awk? I have a file with 4 columns (pipe-delimited): I just want to convert the last field so that e1 is now 'message 1', e2 is 'message 2', e0 is 'message 3', etc. I don't want to change any other columns because the e0-e10 code may appear as part of a... (4 Replies)
Discussion started by: giannicello
4 Replies

2. Shell Programming and Scripting

AWK- delimiting the strings and matching the fields

Hello, I am newbie in awk. I have just started learning it. 1) I have input file which looks like: {4812 4009 1602 2756 306} {4814 4010 1603 2757 309} {8116 9362 10779 } {10779 10121 9193 10963 10908} {1602 2756 306 957 1025} {1603 2757 307} and so on..... 2) In output: a)... (10 Replies)
Discussion started by: kajolo
10 Replies

3. Shell Programming and Scripting

New tool for shell scripting

Hi All, It's quite long time....m comming to my favourite forum.. Can anyone suggest me good tool like eclipse for Java....do we have anything for Shell scripting..where n i can atlease prepare script...rather than typing all mistakes in Linux box :) Thanks Sha (1 Reply)
Discussion started by: Shahul
1 Replies

4. Shell Programming and Scripting

help with sed | awk

I have this log file that I need to reduce the size by deleting the lines from the log file if the date at the beginning of the line is older than 30 days from the current system date. 01/30/2010 at 08:00:08 Successful call to script 01/30/2010 at 08:15:06 Processing is terminated... (8 Replies)
Discussion started by: udelalv
8 Replies

5. Shell Programming and Scripting

delete block of lines when pattern does not match

I have this input file that I need to remove lines which represents more than 30 days of processing. Input file: On 11/17/2009 at 12:30:00, Program started processing...argc=7 Total number of bytes in file being processed is 390 Message buffer of length=390 was allocated successfully... (1 Reply)
Discussion started by: udelalv
1 Replies

6. Shell Programming and Scripting

Multiple variables options

Hi I'm looking to take a user input and use it to effect just two characters in a command rather than having multiple functions for each one. function baseencode() { echo "This function handles the following: $YELLOW base64 base32 base16 $NORMAL" echo "$GREEN Select 64 32 or 16 $NORMAL"... (2 Replies)
Discussion started by: 3therk1ll
2 Replies

7. Shell Programming and Scripting

Download dynamic generated image from HTML page

I've an HTML page where the pie chart is generated with google java code with the required input values in UNIX. The HMTL page is generated in UNIX and then when it loads in browser, the code is interpreted thought internet and the pie chart is generated. This is done by the java code in the... (4 Replies)
Discussion started by: Amutha
4 Replies

8. OS X (Apple)

An Audio Function Generator...

Ok guys, gals and geeks... As from today I am starting to learn awk in earnest doing something totally different. I am going to create a pseudo-Audio_Function Generator centred around OSX 10.11.x minimum. The code below is a tester to see what the possibilities are. All waveforms will be... (11 Replies)
Discussion started by: wisecracker
11 Replies

9. UNIX for Beginners Questions & Answers

Changing date format with script

I'm trying to change date format using this script from day/month/year to month/day/year #!/bin/bash while read line; do echo "$line" date=$(echo "$line" | cut -d/ -f1 ) month=$(echo "$line" | cut -d/ -f2 ) echo $month"/"$date"/2017" done < ~/Downloads/Dates.csv But I get output as... (5 Replies)
Discussion started by: sharat
5 Replies