Sponsored Content
Special Forums UNIX and Linux Applications Looking for DB editor multiplatform freeware Post 302139462 by robotronic on Sunday 7th of October 2007 10:12:29 AM
Old 10-07-2007
You can try TOra, a freeware Toad "clone".
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

adobe freeware question

I've just downloaded the adobe reader for a solaris 8 box of mine. I try to unzip it as it is is tar.gz format and get a binary error ? how can I unzip this thing and get the reader going ? thanks (3 Replies)
Discussion started by: simon2000
3 Replies

2. UNIX for Dummies Questions & Answers

Can anyone recommend a freeware X-windows emulator?

Are there any freeware or shareware X-windows emulators out there? I only have the need for an emulator on rare occasions and would like to avoid having to purchase something like Exceed or x32. Thanks (1 Reply)
Discussion started by: rhack
1 Replies

3. HP-UX

HP UNIX freeware

Hi I plan to buy HP unix system from ebay for learning purpose. Would like to know if any HP UX version is freeware or available for download. Thanks GRR (4 Replies)
Discussion started by: grr9999
4 Replies

4. UNIX and Linux Applications

Is there freeware application like access or VB ?

Hello all I is there freeware application that as Microsoft access and VB (RAD tool ) That is free to use and multi platform? (2 Replies)
Discussion started by: umen
2 Replies

5. Shell Programming and Scripting

set EDITOR=vi -> default editor not setting for cron tab

Hi All, I am running a script , working very fine on cmd prompt. The problem is that when I open do crontab -e even after setting editor to vi by set EDITOR=vi it does not open a vi editor , rather it do as below..... ///////////////////////////////////////////////////// $ set... (6 Replies)
Discussion started by: aarora_98
6 Replies

6. Solaris

Looking for truly freeware chat server for solaris

I am running solaris 9 on x86 server. I am looking to find an actual freeware chat server that I can install and let 10-20 users on my network use... I was directed towards "dbabble" which is great but not freeware and trial expires after 30 days.... Anyone know a reasonably decent freeware... (1 Reply)
Discussion started by: frustrated1
1 Replies

7. Solaris

freeware needed

Is there any freeware or shareware which can execute .exe files in solaris 10 if it is please give the link (4 Replies)
Discussion started by: tiwsaj
4 Replies

8. Windows & DOS: Issues & Discussions

Is freeware safe?

Hi there, I am posting this from my desktop (XP Home Edition) which has Norton I.S 2009 which will soon expire. I also have a laptop I was given which runs on vista home premium (recent clean install) which I have not yet used. I have a LinkSys wireless-N ADSL2+ Gateway router and I was... (3 Replies)
Discussion started by: Sebastian2
3 Replies

9. UNIX for Dummies Questions & Answers

Availablility of mysql freeware

Hi, Is there a freeware available of mysql? Can it be installed on AIX? Please suggest. Thanks! (1 Reply)
Discussion started by: dwiravi
1 Replies
ED(1)							      General Commands Manual							     ED(1)

NAME
ed - editor SYNOPSIS
ed file OPTIONS
- Suppress line/byte count messages (for in scripts) EXAMPLES
ed prog.c # Edit prog.c echo '1,$p' | ed - file # Odd way to write 'cat file' DESCRIPTION
Ed is functionally equivalent to the standard V7 editor, ed. It supports the following commands: (.) a: append (.,.)c: change (.,.)d: delete e: edit new file" f: print name of edited file" (1,$)g: global command (.) i: insert (.,.+1)j: join lines together (.) k: mark (.) l: print with special characters in octal (.,.)m: move (.,.)p: print q: quit editor" (.) r: read in new file (.,.)s: substitute (1,$)v: like g, except select lines that do not match (1,$)w: write out edited file Many of the commands can take one or two addresses, as indicated above. The defaults are shown in parentheses. Thus a appends to the cur- rent line, and g works on the whole file as default. The dot refers to the current line. Below is a sample editing session with comments given following the # symbol. ed prog.c # Edit prog.c 3,20p # Print lines 3 through 20 /whole/ # Find next occurence of whole s/whole/while/ # Replace whole by while g/Buf/s//BUF/g # Replace Buf by BUF everywhere w # Write the file back q # Exit the editor Ed is provided for its sentimental value. If you want a line-oriented editor, try ex. If you want a good editor, use elle, elvis, or mined. SEE ALSO
elvis(1), elle(9), mined(9). ED(1)
All times are GMT -4. The time now is 09:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy