Sponsored Content
Top Forums UNIX for Advanced & Expert Users Tip: how to get the deepest directories Post 302978376 by Scrutinizer on Friday 29th of July 2016 12:34:00 PM
Old 07-29-2016
That is cool approach, even though it is not foolproof, since an extra hard link will mess up the result, although in practice that probably/usually will not be the case,.
This User Gave Thanks to Scrutinizer For This Post:
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

check if multiple directories exist else create missing directories

Hi , I 'm trying to check if multiple directories exist on a server, if not create the missing ones and print " creating missing directory. how to write this in a simple script, I have made my code complex if ; then taskStatus="Schema extract directory exists, checking if SQL,Count and... (7 Replies)
Discussion started by: ramky79
7 Replies

2. Shell Programming and Scripting

Script for parsing directories one level and finding directories older than n days

Hello all, Here's the deal...I have one directory with many subdirs and files. What I want to find out is who is keeping old files and directories...say files and dirs that they didn't use since a number of n days, only one level under the initial dir. Output to a file. A script for... (5 Replies)
Discussion started by: ejianu
5 Replies

3. Shell Programming and Scripting

How to list all the directories, sub directories in a mount along with size in ascending order?

Hi , I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In a particular mount, have to list all the directories and sub directories along with size of the directory and sub directory in ascending order. Please help me in this regard and many... (4 Replies)
Discussion started by: nmakkena
4 Replies

4. UNIX for Dummies Questions & Answers

Using grep command to find the pattern of text in all directories and sub-directories.

Hi all, Using grep command, i want to find the pattern of text in all directories and sub-directories. e.g: if i want to search for a pattern named "parmeter", i used the command grep -i "param" ../* is this correct? (1 Reply)
Discussion started by: vinothrajan55
1 Replies

5. Shell Programming and Scripting

How to list all the files, directories and sub-directories in the current path except one directory?

Can anyone come up with a unix command that lists all the files, directories and sub-directories in the current directory except a folder called log.? Thank you in advance. (7 Replies)
Discussion started by: Manjunath B
7 Replies

6. UNIX for Dummies Questions & Answers

List the directories, having given pattern in the directories name, sorted by creation date

It is for HP-Unix B.11.31. Requirement: 1. List the directories, having given pattern in the directories name, sorted by creation date. Example: Directories with name "pkg32*" or "pkg33*" 2. On the output of 1. list the directories by creation date as sort order, with creation date... (2 Replies)
Discussion started by: Siva SQL
2 Replies

7. UNIX for Advanced & Expert Users

Tip: show the last 3 directories in the shell prompt

tcsh: have the following in .cshrc (or .tcshrc) set prompt=": " zsh: have the following in .zshrc PS1="%# " bash: have the following in .bashrc PS1='\$ 'Lacking direct support this is a good approximation. (0 Replies)
Discussion started by: MadeInGermany
0 Replies

8. Solaris

Giving read write permission to user for specific directories and sub directories.

I have searched this quite a long time but couldn't find the right method for me to use. I need to assign read write permission to the user for specific directories and it's sub directories and files. I do not want to use ACL. This is for Solaris. Please help. (1 Reply)
Discussion started by: blinkingdan
1 Replies

9. UNIX for Beginners Questions & Answers

[Tip] Housekeeping Tasks Made Easy - User Home directories and Leftover Files

We have regularly questions about how to create users and user accounts. But regularly user accounts need to be deleted too. It is quite easy to delete the user account itself but usually the HOME directory of the user remains. It is good style to remove these directories but simply deleting... (3 Replies)
Discussion started by: bakunin
3 Replies
MYSQLI_STORE_RESULT(3)							 1						    MYSQLI_STORE_RESULT(3)

mysqli::store_result - Transfers a result set from the last query

       Object oriented style

SYNOPSIS
mysqli_result mysqli::store_result ([int $option]) DESCRIPTION
Procedural style mysqli_result mysqli_store_result ([int $option]) Transfers the result set from the last query on the database connection represented by the $link parameter to be used with the mysqli_data_seek(3) function. PARAMETERS
o $ link -Procedural style only: A link identifier returned by mysqli_connect(3) or mysqli_init(3) o $option - The option that you want to set. It can be one of the following values: Valid options +------------------------------+---------------------------------------------------+ | Name | | | | | | | Description | | | | +------------------------------+---------------------------------------------------+ | | | |MYSQLI_STORE_RESULT_COPY_DATA | | | | | | | Copy results from the internal mysqlnd buffer | | | into the PHP variables fetched. By default, | | | mysqlnd will use a reference logic to avoid copy- | | | ing and duplicating results held in memory. For | | | certain result sets, for example, result sets | | | with many small rows, the copy approach can | | | reduce the overall memory usage because PHP vari- | | | ables holding results may be released earlier | | | (available with mysqlnd only, since PHP 5.6.0) | | | | +------------------------------+---------------------------------------------------+ RETURN VALUES
Returns a buffered result object or FALSE if an error occurred. Note mysqli_store_result(3) returns FALSE in case the query didn't return a result set (if the query was, for example an INSERT state- ment). This function also returns FALSE if the reading of the result set failed. You can check if you have got an error by checking if mysqli_error(3) doesn't return an empty string, if mysqli_errno(3) returns a non zero value, or if mysqli_field_count(3) returns a non zero value. Also possible reason for this function returning FALSE after successful call to mysqli_query(3) can be too large result set (memory for it cannot be allocated). If mysqli_field_count(3) returns a non-zero value, the statement should have pro- duced a non-empty result set. NOTES
Note Although it is always good practice to free the memory used by the result of a query using the mysqli_free_result(3) function, when transferring large result sets using the mysqli_store_result(3) this becomes particularly important. EXAMPLES
See mysqli_multi_query(3). SEE ALSO
mysqli_real_query(3), mysqli_use_result(3). PHP Documentation Group MYSQLI_STORE_RESULT(3)
All times are GMT -4. The time now is 08:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy