Search Results

Search: Posts Made By: upvan111
1,626
Posted By junior-helper
In a nutshell: It talks to the Oracle DB and...
In a nutshell: It talks to the Oracle DB and redirects all output to a logfile.
# delete logfile
rm -f $runLog

# connect to Oracle database
sqlplus $CONNECT_STRING @$sql_filename...
14,083
Posted By Corona688
You don't need to change the permissions unless...
You don't need to change the permissions unless it tells you "permission denied".

Try downloading it again, maybe it got corrupted.

Perhaps vbox is picky about what kind of ISO it gets (Joliet,...
58,387
Posted By itkamaraj
you can use wc -l < filename ...
you can use


wc -l < filename


it will show the output as 2 ( if you have a newline )
8,408
Posted By cfajohnson
Right. Here's a more robust version of the...
Right.

Here's a more robust version of the is_file function:


is_file ()
{
for f in "$@"
do
[ -f "$f" ] && return;
done;
return 1
}
8,408
Posted By cfajohnson
is_file() { [ -f "$1" ] || return 1 } ...
is_file()
{
[ -f "$1" ] || return 1
}

is_file ZipMiscFiles/* || {
echo ""
echo " No Miscellaneous files found. Exiting program."
echo ""
exit
}
Showing results 1 to 5 of 5

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