大家好,欢迎来到IT知识分享网。
查找文件所在位置
格式: find + 路径 + “-name” + 文件名
命令行:
touch@touch-VirtualBox:~/Driver Development$ sudo find /home/touch/ -name "5_led_bsp_manage"
终端显示结果:
/home/touch/Driver Development/5_led_bsp_manage
查找文件内容对应的文件及其所在位置
格式:grep -r + “关键字”
命令行:
touch@touch-VirtualBox:~/Driver Development$ grep -r "INCLUDE"
终端显示结果://第一部分(左边)为路径,第二部分(右边)为内容所在行
6_key_for_beep/Makefile:INCLUDE := $(patsubst %, -I %, $(INCDIRS))
6_key_for_beep/Makefile: $(GCC) -Wall -nostdlib -c $(INCLUDE) -o $@ $<
6_key_for_beep/Makefile: $(GCC) -Wall -nostdlib -c $(INCLUDE) -o $@ $<
5_led_bsp_manage/Makefile:INCLUDE := $(patsubst %, -I %, $(INCDIRS))
5_led_bsp_manage/Makefile: $(GCC) -Wall -nostdlib -c $(INCLUDE) -o $@ $<
5_led_bsp_manage/Makefile: $(GCC) -Wall -nostdlib -c $(INCLUDE) -o $@ $<
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/14338.html