File indexing completed on 2024-05-12 04:17:32

0001 #!/bin/bash
0002 
0003 # SPDX-FileCopyrightText: 2008-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0004 #
0005 # SPDX-License-Identifier: BSD-3-Clause
0006 #
0007 # Script to show all KF5 dependencies by macro includes scan
0008 
0009 grep -r "#include <k" ../../core/*          | \
0010     grep -v "#include <klocalizedstring.h>" | \
0011     grep -v "config"                        | \
0012     grep -v "kernel"                        | \
0013     grep -v "kvm"                           | \
0014     grep -v "kstat"                         | \
0015     grep -v "keychain"                      | \
0016     grep -v "scankdedep.sh"