0
votes
0
comments
1,363
views
Apache mod_watchdog is required
Some of you may take the lazy way of updating your linux systems by using yum-cron. yum-cron will perform auto-updates on your system when patches are made available. With some configuration, you can have this program only send you and email alert. For those of you running an apache http server and have auto-updates configured. you probable […]0
votes
0
comments
606
views
volcopy for Linux?
Reading one of the editions of the Nemeth’s book (Nemeth et al), have read about volcopy — an utility that copies a filesystem from one device to another, making “a literal copy” (here’s a man page, though not too helpful). The Book said the utility exists for Linux, but quick googlin’ didn’t show many results. […]0
votes
0
comments
1,788
views
Deleting files with special characters
I have a folder named akorg✽. That Unicode character causes headaches for me when software makes incorrect assumptions about the text encoding of my file paths, so I’d like to remove it from the name. The problem You’d think this would be easy: $ mv akorg✽ akorg mv: cannot move ‘akorg✽’ to a subdirectory of […]0
votes
1
comments
77,387
views
Using awk to print all columns from the nth to the last
Getting a one-liner awk routine to print the nth field to the last should not be so complicated. For my wish list awk should have a function called ‘fields’ that would perform this tasks. It could have the same syntax as the substr command ie fields(5, 8) which would print fields 5 through 8. Being […]0
votes
0
comments
933
views