Perintah yang dapat digunakan.
find [DIRECTORY] -exec grep -H -n [STRING] {} \;
Contoh
Contoh berikut akan mencari letak dimana file dari fungsi wp_login berada. Pencarian dilakukan pada direktori distribusi wordpress yang telah diextract.
$ find . -exec grep -H -n 'function wp_login' {} \; 122:function wp_login($username, $password, $deprecated = '') { ./wp-includes/pluggable-deprecated.php:122:function wp_login($username, $password, $deprecated = '') { ./wp-includes/general-template.php:185:function wp_loginout($redirect = '', $echo = true) { ./wp-includes/general-template.php:234:function wp_login_url($redirect = '', $force_reauth = false) { ./wp-includes/general-template.php:254:function wp_login_form( $args = array() ) {
Terlihat bahwa fungsi wp_login terdapat pada file wp-includes/pluggable-deprecated.php baris ke 122.
0 comments:
Post a Comment