This manual is deprecated. Please visit https://groupoffice.readthedocs.io for the latest documentation.

Difference between revisions of "Linux commands"

From Group-Office Groupware and CRM Documentation
Jump to: navigation, search
(New page: Find all symbolic links to a specific directory: find -type l -exec stat {} \; | grep /usr/local/trunk)
 
Line 1: Line 1:
 
Find all symbolic links to a specific directory:
 
Find all symbolic links to a specific directory:
  
find -type l -exec stat {} \; | grep /usr/local/trunk
+
find -maxdepth 2 -type l -exec stat {} \; | grep /usr/local/trunk

Revision as of 10:09, 3 July 2009

Find all symbolic links to a specific directory:

find -maxdepth 2 -type l -exec stat {} \; | grep /usr/local/trunk