在Linux系統下查找可執行文件解決方法

   可執行文件是指可移植可執行的文件,用於程序的執行,那麼Linux下要如何查找可執行文件呢?下面小編就給大傢介紹下Linux中查找可執行文件的方法,一起來瞭解下吧。

 

在Linux系統下查找可執行文件解決方法

 

  linux下查找可執行文件

  ls -F|grep “*”

  這樣就可以瞭!

  ls -F | grep /$是什麼意思

  ls -F的意思是把文件按照類型歸類,並且在末尾加上/ *等符號標識

  | 管道輸出,把前面命令的結果當做輸入傳給後面的命令

  grep /$的意思是從中挑出以/結尾的行,/就是標識是目錄

  -F, –classify

  append indicator (one of */=》@|) to entries

  例子:

  代碼如下:

  [[email protected]_SYS ~]# ls -F

  1.sh* CC_manual_0701.rar gzpackage/ man.config script/ tr1.txt

  2005.03.01 dead.letter index.html ntpd-deploy.sh* start_tomcatServer229-1.sh tr.txt

  anaconda-ks.cfg Desktop/ install.log printc.sh start_tomcatServer229-2.sh usr/

  apache-tomcat-6.0.30.zip etc/ install.log.syslog rpmpackage/ stop_tomcatServer229-1.sh zy/

  camptocamp-tomcat-0.0.1/ get_date.sh lib/ ruby-1.8.7-p248/ stop_tomcatServer229-2.sh zy.bak/

  [[email protected]_SYS ~]#

  如果我們搜索以/結尾的,我們可以用以下方法:

  ls -F|grep \/【轉義字符】

  ls -F|grep /$

  ls -F|grep /

  我們來看看ls -F的作用:

  -F開關對可執行文件添加一個*號,為目錄添加一個/號,[email protected]

[email protected]瞭,查找的時候可使用ls -F|grep “*”,你是否還在為找不到可執行文件而煩惱呢?不妨試試本文介紹的方法吧,想瞭解更多內容可以對GuideAH進行關註!。

閱讀更多: