I have the same scanner, since 2008, still works good, can do very high
resolution, although it is tedious for large numbers of scans. I echo the
remark about the negatives. Color prints are horrible as archival
documents. Black and white prints can be okay.
On Fri, Nov 19, 2021, 19:59 Bill Barry
On Fri, Nov 19, 2021, 9:33 PM Michael Barnes wrote:
> I have a large number of old photos I would like to scan into files. I'm
> looking for an inexpensive scanner for this that will work with Linux. I
> don't need anything with a feeder, just a plain flatbed will probably get
> the job done.
>
I have a large number of old photos I would like to scan into files. I'm
looking for an inexpensive scanner for this that will work with Linux. I
don't need anything with a feeder, just a plain flatbed will probably get
the job done.
Thanks for your suggestions.
Michael
Great resource, I use it frequently.
On Fri, Nov 19, 2021, 14:34 Russell Senior
wrote:
> Did you look at this at all?
>
> https://www.gnu.org/software/gawk/manual/gawk.html
>
> It is similar to the original book, which I have on my shelf.
>
> On Fri, Nov 19, 2021 at 10:54 AM Rich Shepard
> wr
Did you look at this at all?
https://www.gnu.org/software/gawk/manual/gawk.html
It is similar to the original book, which I have on my shelf.
On Fri, Nov 19, 2021 at 10:54 AM Rich Shepard wrote:
>
> On Fri, 19 Nov 2021, Robert Citek wrote:
>
> > So you want ‘NR > 1’ to be a pattern, but you h
I answered the same a while back, with similar response.
Time to try it!
-T
On Fri, Nov 19, 2021, 13:54 Rich Shepard wrote:
> On Fri, 19 Nov 2021, Robert Citek wrote:
>
> > So you want ‘NR > 1’ to be a pattern, but you have it as an action.
> > Your code needs to look more like this …
> > BEG
On Fri, 19 Nov 2021, Robert Citek wrote:
So you want ‘NR > 1’ to be a pattern, but you have it as an action.
Your code needs to look more like this …
BEGIN { FS = ","; OFS = "," }
NR > 1 { print $1, $2, $3, $4, $5, $6, $7, $8 "chl-a", $9, "ug/l" }
Robert,
That does make sense, but none of the
Close. Remember, an awk script has the structure …
PATTERN { ACTION }
So you want ‘NR > 1’ to be a pattern, but you have it as an action.
Your code needs to look more like this …
BEGIN { FS = ","; OFS = "," }
NR > 1 { print $1, $2, $3, $4, $5, $6, $7, $8 "chl-a", $9, "ug/l" }
Regards,
- Robert
I have data files needing more columns. The first row is the header with
column names and I want to skip that row. I have not found the proper place
to put the command to skip the first row.
Here's an example:
-
#!/usr/bin/gawk
{ NR > 1 }
BEGIN { FS = ","; OFS = "," }
{ print $1, $2,