Question : check_directory_files

I have a windows PC. I use Winscp and putty to log in to two remote IBM unix machines.

They copies one directory from one machine to the other.

Is there a way to install or do something that give me a listing of that directory and all subdirectories and files so i can compare both on each machine and see if anything is missing.

I would like to copy that to notepad and print it in windows somehow.

Answer : check_directory_files

Oracle
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
SELECT
  CASE WHEN nd.degree_year_1 between 2000 and 2010 then '10'
    WHEN nd.degree_year_1 between 1990 AND 1999 then '90'
    WHEN nd.degree_year_1 between 1980 AND 1989 then '80' END AS Decade,
  COUNT(DISTINCT nd.id_number),
  TO_CHAR(SUM(g.gift_associated_credit_amt), '$999,999,999.99')
FROM
  nau_degrees nd,
  gift g
WHERE g.gift_donor_id = nd.id_number
  AND g.gift_associated_code = 'P'
  AND TRUNC(g.gift_receipt_date) BETWEEN TO_DATE('07/01/2009', 'MM/DD/YYYY') AND TO_DATE('06/30/2010', 'MM/DD/YYYY')
GROUP BY
  CASE WHEN nd.degree_year_1 between 2000 and 2010 then '10'
    WHEN nd.degree_year_1 between 1990 AND 1999 then '90'
    WHEN nd.degree_year_1 between 1980 AND 1989 then '80' END
ORDER BY
  1
Random Solutions  
 
programming4us programming4us