Search Results

Search: Posts Made By: kalidoss
1,440
Posted By vbe
Even dynamicaly you have clues on the filname you...
Even dynamicaly you have clues on the filname you are looking for, use what you know will always be in the file names...
You know that the desired files will always end by .dat only many other files...
1,440
Posted By vbe
ls -l TE*_DATA_*.dat
ls -l TE*_DATA_*.dat
1,440
Posted By vbe
Well you look for what they have in common: ...
Well you look for what they have in common:
_TEST_DATA_ and .dat
so e.g.

ls -al *_TEST_DATA_*.dat |more
24,521
Posted By Yoda
I think that table will not be accessible for...
I think that table will not be accessible for your DB user.

If you are interested in getting the DB instance an alternate approach would be:
select ora_database_name from dual;
2,798
Posted By Yoda
split -d -l 10 filename filename_split_ tar -cf...
split -d -l 10 filename filename_split_
tar -cf filename_archive.tar filename_split_*
uuencode filename_archive.tar filename_archive.tar | mailx -s "Subject" user@domain.com
2,798
Posted By Franklin52
The code seems to be fine. Have you saved the...
The code seems to be fine. Have you saved the file with a windows editor?
2,798
Posted By Corona688
Using an array for this is kind of overkill. If...
Using an array for this is kind of overkill. If you just want to read lines one by one, read lines one by one.

A=0
while read -r LINE
do
echo mv "$LINE" "./line_test_${A}.txt"
...
Showing results 1 to 7 of 7

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