Re: PDF Editor

2008-12-24 Thread Uri Evenhen Mor
On Tue, Dec 23, 2008 at 10:37 AM, Saba Moshe wrote: > http://www.foxitsoftware.com/pdf/reader_2/reader-interstitial.html > > It rotates the pages and GUI I tried the reader, but it can't save the rotated file. > > Saba Moshe > > > On 12/22/08, Uri Evenhen Mor wrote: >> On Mon, Dec 22, 2008 at 2

Re: PDF Editor

2008-12-24 Thread Dotan Cohen
2008/12/22 Uri Evenhen Mor : > Hi Omer, Linux-IL friends, > > I need a program for editing and creating PDF files. I understand > adobe is the official creator of PDF format. I searched but I can't > find a good PDF editor (GPL or free software). Do you recommend > ghostscript or any other softw

Re: PDF Editor

2008-12-24 Thread Uri Evenhen Mor
On Wed, Dec 24, 2008 at 12:27 PM, Dotan Cohen wrote: > > Ghostscript seems to be the standard tool for this kind of stuff. It > is available for Windows as well as Linux. Does Ghostscript support GUI? Can you send me a link for downloading Ghostscript? I tried to download it but the link didn't

Re: un-head

2008-12-24 Thread Dan Shimshoni
Hello, - And in the same fun spirit : Is it possible to delete a line in a specified file , given the number of the line, in a non-sed script ? DanS On Wed, Dec 24, 2008 at 9:08 AM, Oron Peled wrote: > On Tuesday, 23 בDecember 2008, Erez D wrote: > >> On Tue, Dec 23, 2008 at 10:17 AM, Valery

Re: un-head

2008-12-24 Thread Tzafrir Cohen
On Wed, Dec 24, 2008 at 01:34:08PM +0200, Dan Shimshoni wrote: > Hello, > > - And in the same fun spirit : > Is it possible to delete a line in a specified file , given the > number of the line, in a non-sed script ? in-line editing? perl? python? what other language? Or do you want to limit i

Re: PDF Editor

2008-12-24 Thread Dotan Cohen
2008/12/24 Uri Evenhen Mor : > On Wed, Dec 24, 2008 at 12:27 PM, Dotan Cohen wrote: >> >> Ghostscript seems to be the standard tool for this kind of stuff. It >> is available for Windows as well as Linux. > > Does Ghostscript support GUI? > Can you send me a link for downloading Ghostscript? I tr

Re: un-head

2008-12-24 Thread Erez D
remove line #5: awk '{ if (++l!=5) print $0}' On Wed, Dec 24, 2008 at 2:06 PM, Yaacov Fenster - System Engineering Troubleshooting and other stuff wrote: > Using trusty awk - > > awk -v line_num=5 '{if(NR == line_num){next;} print $0;}' < file > > > On 24-Dec-2008 13:34 , Dan Shimshoni wrote:

Re: un-head

2008-12-24 Thread Dan Shimshoni
Thanks! I want that the output will be be not the console, as it is by your offer, but to the same file. Namely , running the script on input.txt will delete a line in that file so that after running the script,input.txt will be the same but without line 5. It can be done by two lines following yo

Re: un-head

2008-12-24 Thread Yaacov Fenster - System Engineering Troubleshooting and other stuff
Using trusty awk - awk -v line_num=5 '{if(NR == line_num){next;} print $0;}' < file On 24-Dec-2008 13:34 , Dan Shimshoni wrote: Hello, - And in the same fun spirit : Is it possible to delete a line in a specified file , given the number of the line, in a non-sed script ? DanS On Wed, Dec

Re: un-head

2008-12-24 Thread Tzafrir Cohen
On Wed, Dec 24, 2008 at 03:03:08PM +0200, Dan Shimshoni wrote: > Thanks! > I want that the output will be be not the console, as it is by your > offer, but to the same file. > Namely , running the script on input.txt will delete a line in that > file so that after running the script,input.txt will

Re: un-head

2008-12-24 Thread Erez D
On Wed, Dec 24, 2008 at 3:03 PM, Dan Shimshoni wrote: > Thanks! > I want that the output will be be not the console, as it is by your > offer, but to the same file. > Namely , running the script on input.txt will delete a line in that > file so that after running the script,input.txt will be the

Ubuntu kernel build - ignores .config ??

2008-12-24 Thread Lev Olshvang
Evening all, I need to rebuild kernel for my Ubuntu 7.10 box . So I had installed linux-source package and made menuconfig. ( I do not need make-dpkg since I used to do things manually) And I see that .config file indeed is build according to my request and only my hardware devices are pres

Re: un-head

2008-12-24 Thread Oleg Goldshmidt
On Wed, Dec 24, 2008 at 2:06 PM, Yaacov Fenster - System Engineering Troubleshooting and other stuff wrote: > Using trusty awk - > > awk -v line_num=5 '{if(NR == line_num){next;} print $0;}' < file >> Using trusty awk - >> >> awk -v line_num=5 '{if(NR == line_num){next;} print $0;}' < file AWK h