Sponsored Content
Full Discussion: Type of UNIX applications
Special Forums UNIX and Linux Applications Type of UNIX applications Post 303005093 by drl on Thursday 12th of October 2017 03:32:29 PM
Old 10-12-2017
Hi.
Quote:
Originally Posted by anton.robidson
...Could you list other types of applications?

Other names of most-used applications ?
...
Quote:
Originally Posted by https://en.wikipedia.org/wiki/Application_software
The collective noun application software refers to all applications collectively.[1] This contrasts with system software, which is mainly involved with running the computer.
I would guess that it depneds on your business -- for a start, see Application software - Wikipedia

Best wishes ... cheers, drl
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

you have more and one unix type?

As a formem unix newbe I Just wanted to tell you about this cool site for all you confused people. If you need to support more than one unix type: Use this one. It's a life saver. http://www.unixguide.net/unixguide.shtml here (4 Replies)
Discussion started by: sunbird
4 Replies

2. UNIX for Advanced & Expert Users

executing applications/commands on a unix server from a windows PC

i have a network drive (samba) mounted on to my PC and also i have SSH client on my machine. however i need to run applications/commands on a unix server from the middle of a different executable(windows compatable one). so i need to connect to the unix server from SSH through the... (1 Reply)
Discussion started by: megastar
1 Replies

3. UNIX for Dummies Questions & Answers

What kind of security applications UNIX and Windows have in common?

Hi guys, may I know what kind of security applications do UNIX and Windows have in common? This is related to a project that is approaching its deadline, so would you all please be kind enough to help me? Thank You. (0 Replies)
Discussion started by: austintham
0 Replies

4. Programming

Platform type in Unix

Hi all, How does one get the platform type in UNIX (for e.g. sparc/i386)? I need an function call and not the command like uname -p. thanks! (24 Replies)
Discussion started by: slash_blog
24 Replies

5. UNIX for Dummies Questions & Answers

UNIX kernel type?

Hai guys,This is my first question. What type of UNIX kernel is? (W.K.T linux kernel is monolithic) Thank you (2 Replies)
Discussion started by: Felicia23
2 Replies

6. UNIX for Dummies Questions & Answers

Unix version/type

Hi, How can I find out what unix I am using? Thanks C19 (4 Replies)
Discussion started by: c19h28O2
4 Replies

7. UNIX for Advanced & Expert Users

How to check which type of storage is used in unix

SunOS 5.10 Generic_142900-15 sun4v sparc SUNW,T5240 how can i check the storage type being used in unix solaris sparc system? please help me its urgnet.. thank you (1 Reply)
Discussion started by: aesgs
1 Replies

8. UNIX for Dummies Questions & Answers

How can I rebuild applications that developed in UNIX? I need to use it in windows os with cygwin

I need to rebuild an application that developed in unix environment and run in windows OS with cygwin. so How can I rebuild from the source code? is there any one who said something on this regard? (2 Replies)
Discussion started by: bejirond
2 Replies

9. Shell Programming and Scripting

UNIX command to know the applications

Hi, I have a unix server, I want to know which user applicaions are running on that server. Is there any command ? Thanks (1 Reply)
Discussion started by: nag_sathi
1 Replies

10. What is on Your Mind?

Developing Applications for UNIX.COM

A number of people have asked me about the best way to develop some cool new web app for UNIX.COM. In today's "very easy web dev" world, developers do not need to be burdened (like I am) to the "back end" of the site. The best way to develop web apps is to build the application on your desktop... (2 Replies)
Discussion started by: Neo
2 Replies
Pod::Simple::Wiki(3pm)					User Contributed Perl Documentation				    Pod::Simple::Wiki(3pm)

NAME
Pod::Simple::Wiki - A class for creating Pod to Wiki filters. VERSION
This document refers to version 0.09 of Pod::Simple::Wiki, released May 24 2008. SYNOPSIS
To create a simple filter to convert from Pod to a wiki format: #!/usr/bin/perl -w use strict; use Pod::Simple::Wiki; my $parser = Pod::Simple::Wiki->new('kwiki'); if (defined $ARGV[0]) { open IN, $ARGV[0] or die "Couldn't open $ARGV[0]: $! "; } else { *IN = *STDIN; } if (defined $ARGV[1]) { open OUT, ">$ARGV[1]" or die "Couldn't open $ARGV[1]: $! "; } else { *OUT = *STDOUT; } $parser->output_fh(*OUT); $parser->parse_file(*IN); __END__ To convert Pod to a wiki format using the installed "pod2wiki" utility: pod2wiki --style mediawiki file.pod > file.wiki DESCRIPTION
The "Pod::Simple::Wiki" module is used for converting Pod text to Wiki text. Pod (Plain Old Documentation) is a simple markup language used for writing Perl documentation. A Wiki is a user extensible web site. It uses very simple mark-up that is converted to Html. For an introduction to Wikis see: http://en.wikipedia.org/wiki/Wiki METHODS
new('wiki_format') The "new" method is used to create a new "Pod::Simple::Wiki" object. It is also used to set the output Wiki format. my $parser1 = Pod::Simple::Wiki->new('wiki'); my $parser2 = Pod::Simple::Wiki->new('mediawiki'); my $parser3 = Pod::Simple::Wiki->new(); # Defaults to 'wiki' The currently supported formats are: wiki kwiki usemod twiki tiddlywiki textile wikipedia or mediawiki moinmoin confluence Other methods Pod::Simple::Wiki inherits all of the methods of "Pod::Simple". See Pod::Simple for more details. Supported Formats The following wiki formats are supported by "Pod::Simple::Wiki": wiki This is the original Wiki format as used on Ward Cunningham's Portland repository of Patterns. See http://c2.com/cgi/wiki kwiki This is the format as used by Brian Ingerson's Kwiki: http://www.kwiki.org usemod This is the format used by the Usemod wikis. See: http://www.usemod.com/cgi-bin/wiki.pl twiki This is the format used by TWiki wikis. See: http://twiki.org/ tiddlywiki This is the format used by the TiddlyWiki. See: http://www.tiddlywiki.com/ textile The Textile markup format as used on GitHub. See: http://textile.thresholdstate.com/ wikipedia or mediawiki This is the format used by Wikipedia and MediaWiki wikis. See: http://www.mediawiki.org/ moinmoin This is the format used by MoinMoin wikis. See: http://moinmo.in/MoinMoinWiki confluence This is the format used by Confluence. See: http://www.atlassian.com/software/confluence/ If no format is specified the parser defaults to "wiki". Any other parameters in "new" will be passed on to the parent "Pod::Simple" object. See Pod::Simple for more details. Porting New Wiki Formats If you are interested in porting a new wiki format have a look at Pod::Simple::Wiki::Template. The "Pod::Simple::Wiki" git repository is: http://github.com/jmcnamara/pod-simple-wiki/ SEE ALSO
This module also installs a "pod2wiki" command line utility. See "pod2wiki --help" for details. TODO
o Fix some of the "=over" edge cases. See the TODOs in the test programs. ACKNOWLEDGEMENTS
Thanks to Sean M. Burke for "Pod::Simple". It may not be simple but sub-classing it is. ":-)" Thanks to Sam Tregar for TWiki support. Thanks Tony Sidaway for Wikipedia/MediaWiki support. Thanks to Michael Matthews for MoinMoin support. Thanks to Christopher J. Madsen for several MediaWiki additions and tests. Thanks Tim Bunce for the TiddlyWiki prod and Ron Savage for the port. Thanks to David Bartle, Andrew Hobbs and Jim Renwick for confluence patches. DISCLAIMER OF WARRANTY
Because this software is licensed free of charge, there is no warranty for the software, to the extent permitted by applicable law. Except when otherwise stated in writing the copyright holders and/or other parties provide the software "as is" without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the software is with you. Should the software prove defective, you assume the cost of all necessary servicing, repair, or correction. In no event unless required by applicable law or agreed to in writing will any copyright holder, or any other party who may modify and/or redistribute the software as permitted by the above licence, be liable to you for damages, including any general, special, incidental, or consequential damages arising out of the use or inability to use the software (including but not limited to loss of data or data being rendered inaccurate or losses sustained by you or third parties or a failure of the software to operate with any other software), even if such holder or other party has been advised of the possibility of such damages. LICENSE
Either the Perl Artistic Licence http://dev.perl.org/licenses/artistic.html or the GPL http://www.opensource.org/licenses/gpl-license.php AUTHOR
John McNamara jmcnamara@cpan.org COPYRIGHT
MMIII-MMVIII, John McNamara. All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself. perl v5.10.1 2009-08-29 Pod::Simple::Wiki(3pm)
All times are GMT -4. The time now is 06:29 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy