Automatically Generate ER Diagrams for Your dbt Models with dbt-model-erd
Overview Not enough teams focus on conceptual modeling of data before creating dbt models. Even fewer maintain …
In this article we will go over find command in Linux with examples.
Command : find -name '*Data*'
To find files in different directory specify directory name after the find command. Command: find {directoryName} -name '*Data*'
Command : find -iname '*DAta*'
Command : find -type d -iname "Data"
Command : find -mtime 2
Command : find -type f -perm 777
Command : find -iname '*DAta*' -print | xargs grep "FNU"
Command : find -iname '*DAta*' -type f -exec grep "FNU" '{}' \\; -print
Command : find -maxdepth 1 -type f -iname '*DAta*'
Command : find -maxdepth 2 -type f -iname '*DAta*'
Command : find * -size +10k -exec ls -l {} \;
Note : k is KB and m is MB in size
Command : find * -size +10k;
Command : find -type f -empty
Command : find -type f -empty -delete
Command : find -atime 0
Command : find -mtime 0
Command : find -ctime 0 -type f
Overview Not enough teams focus on conceptual modeling of data before creating dbt models. Even fewer maintain …
Overview Snowpipe is Snowflake’s most cost-efficient method for continuous data ingestion, automatically loading …