Search Results

Search: Posts Made By: shankarpanda003
4,202
Posted By cero
If you have those filenames in a file a simple...
If you have those filenames in a file a simple grep can do what you want. For example:
$ cat f.txt
a
b
d
e
$ ls -1 folder
a
b
c
d
$ grep -v "^$(ls -1 folder)$" f.txt
e
$
File c is not...
4,202
Posted By gandolf989
It is easy to see what files are there. You then...
It is easy to see what files are there. You then need to walk through the list and see which file wasn't found.

echo `ls . | egrep "listener.ora|sqlnet.ora|tnsnames.ora|missingfile.txt"`


...
3,892
Posted By kailas.girase
If you want to use file as external table then...
If you want to use file as external table then below one is also can be good option :

i=1; while [ $i -lt 10 ]; do echo "$i , $i name ,$i address , $i sales , "; ((i=$i+1)) done >> E_your_table
...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 04:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy