アプリケーションをインストールし、ターミナルからmyapplicationとしてアクセスできるようになりました。ただし、エイリアスです。ファイルへの完全なパスを見つけるにはどうすればよいですか?
type
とwhich
を使用して、bash
内の特定のコマンドを特定し、それがアプリケーションの場合は、それが存在する場所を特定できます。
$ type type
type is a Shell builtin
$ type cd
cd is a Shell builtin
$ type ls
ls is aliased to `ls --color=auto'
$ type -P ls
/Users/danielbeck/bin/ls
$ which which
/usr/bin/which
$ which ls
/Users/danielbeck/bin/ls
コマンドwhich
およびtype -P
はもちろんPATH
のプログラムでのみ機能しますが、コマンド名を入力するだけでは他の人を実行することはできません。
OS X(GUI)アプリケーションバンドルがインストールされている場所を判別する簡単な方法を探している場合(たとえば、open
コマンドで使用されます)、コマンドラインから次の短いAppleScriptを実行できます。
$ osascript -e 'tell application "System Events" to POSIX path of (file of process "Safari" as alias)'
/Applications/Safari.app
これには、問題のプログラム(例ではSafari)が実行されている必要があります。
プログラムが実行中の場合は、
ps -ef | grep PROGRAMM
これは、現在OSXおよびLinuxでFirefoxアプリケーションディレクトリを見つける方法です。別のアプリケーションに簡単に採用できる必要があります。 OSX 10.7、Ubuntu 12.04、Debian Jessieでテスト済み
#!/bin/bash
# Array of possible Firefox application names.
appnames=("IceWeasel" "Firefox") # "Firefox" "IceWeasel" "etc
#
# Calls lsregister -dump and parses the output for "/Firefox.app", etc.
# Returns the very first result found.
#
function get_osx_ffdir()
{
# OSX Array of possible lsregister command locations
# I'm only aware of this one currently
lsregs=("/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister")
for i in "${lsregs[@]}"; do
for j in ${appnames[@]}; do
if [ -f $i ]; then
# Some logic to parse the output from lsregister
ffdir=$($i -dump |grep -E "/$j.app$" |cut -d'/' -f2- |head -1)
ffdir="/$ffdir"
return 0
fi
done
done
return 1
}
#
# Uses "which" and "readlink" to locate firefox on Linux, etc
#
function get_ffdir()
{
for i in "${appnames[@]}"; do
# Convert "Firefox" to "firefox", etc
lower=$(echo "$i" |tr '[:upper:]' '[:lower:]')
# Readlink uses the symlink to find the actual install location
# will need to be removed for non-symlinked applications
exec=$(readlink -f "$(which $lower)")
# Assume the binary's parent folder is the actual application location
ffdir=$(echo "$exec" |rev |cut -d'/' -f2- |rev)
if [ -f "$ffdir" ]; then
return 0
fi
done
return 1
}
echo "Searching for Firefox..."
ffdir=""
if [[ "$OSTYPE" == "darwin"* ]]; then
# Mac OSX
get_osx_ffdir
else
# Linux, etc
get_ffdir
fi
echo "Found application here: $ffdir"
# TODO: Process failures, i.e. "$ffdir" == "" or "$?" != "0", etc
バイナリのパスは、$PATH
変数で参照されます。
コンテンツはenv
で確認できます。
MAC(OS X)では次のことができます。
これで、コマンドラインでアプリケーションへのフルパスを確認し、必要に応じてそこから実行できます。
wikihow から取得
ターミナルで "alias"コマンドを使用して、すべてのエイリアスを一覧表示できます。または、ディレクトリにいる場合は、「pwd」を使用して現在のパスを表示できます。
ファイル名またはファイル名の一部がわかっている場合は、「find」を使用してファイルを検索できます。
find / -name things.jpeg