回答:
フォルダエイリアスへのcdを有効にするには、Mac OS Xのヒントで以下を見つけました。
次のコマンドを使用して、以下のソースコードをコンパイルします。
gcc -o getTrueName -framework Carbon getTrueName.c
これにより、ソースと同じディレクトリに「getTrueName」実行可能ファイルが作成されます。PATHに追加するか、/ usr / binまたは/ usr / local / binに直接コピーするだけで簡単にアクセスできます。
getTrueNameのCソースコード(テキストをコピーして、ファイルをgetTrueName.cとしてホームディレクトリに保存します):
// getTrueName.c
//
// DESCRIPTION
// Resolve HFS and HFS+ aliased files (and soft links), and return the
// name of the "Original" or actual file. Directories have a "/"
// appended. The error number returned is 255 on error, 0 if the file
// was an alias, or 1 if the argument given was not an alias
//
// BUILD INSTRUCTIONS
// gcc-3.3 -o getTrueName -framework Carbon getTrueName.c
//
// Note: gcc version 4 reports the following warning
// warning: pointer targets in passing argument 1 of 'FSPathMakeRef'
// differ in signedness
//
// COPYRIGHT AND LICENSE
// Copyright 2005 by Thos Davis. All rights reserved.
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this program; if not, write to the Free
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
// MA 02111-1307 USA
#include <Carbon/Carbon.h>
#define MAX_PATH_SIZE 1024
#define CHECK(rc,check_value) if ((check_value) != noErr) exit((rc))
int main ( int argc, char * argv[] )
{
FSRef fsRef;
Boolean targetIsFolder;
Boolean wasAliased;
UInt8 targetPath[MAX_PATH_SIZE+1];
char * marker;
// if there are no arguments, go away
if (argc < 2 ) exit(255);
CHECK( 255,
FSPathMakeRef( argv[1], &fsRef, NULL ));
CHECK( 1,
FSResolveAliasFile( &fsRef, TRUE, &targetIsFolder, &wasAliased));
CHECK( 255,
FSRefMakePath( &fsRef, targetPath, MAX_PATH_SIZE));
marker = targetIsFolder ? "/" : "" ;
printf( "%s%s\n", targetPath, marker );
exit( 1 - wasAliased );
}
以下を〜/ .bash_profileに含めるか、次の内容で新しいファイル〜/ .bash_profileを作成します。
function cd {
if [ ${#1} == 0 ]; then
builtin cd
elif [ -d "${1}" ]; then
builtin cd "${1}"
elif [[ -f "${1}" || -L "${1}" ]]; then
path=$(getTrueName "$1")
builtin cd "$path"
else
builtin cd "${1}"
fi
}
変更した.bash_profileをロードするには、ターミナルを再起動する必要があります。
Yosemite 10.10.2およびgcc 4.2(Xcode 6.2)でテストされ、動作します。
同様のアプローチがsuperuser.comで利用可能です
私は@klanomathで答えをテストしていませんが、以前はエイリアスのターゲットを取得するためのPythonライブラリがありましたが、CarbonサポートはAppleフレームワークから削除されました。Objective Cで実行できます。https://stackoverflow.com/a/21151368/838253を参照してください。
最善の策はシンボリックリンクを使用することですが、残念ながらFinderではこれらを作成できません。
シンボリックリンクを作成するOS Xサービスを作成しました(Finderとターミナルの両方でサポートされています)。これにより、Finderワークフローで次のbashスクリプトが実行されます。(残念ながら、Automatorコードを読みやすい形式で投稿することはできないようです)。
for f in "$@"
do
fileSuffix="link"
fileExists=`ls -d "$f $fileSuffix"`
fileNumber=0
until [ $fileExists=="" ]; do
let fileNumber+=1
fileSuffix="link $fileNumber"
fileExists=`ls -d "$f $fileSuffix"`
done
echo "$f $fileSuffix"
ln -s "$f" "$f $fileSuffix"
done
curFolder
そしてlinkFile
未使用の変数ですので、なぜ彼らはあるのですか?比較演算子の周りにはスペースが必要です。たとえば$fileExists == ""
、$(..)
レガシーバッククォートの代わりに使用することを検討してください。
これが私の見解です。
この関数を.profileに追加してロードします。
function cd {
thePath=`osascript <<EOD
set toPath to ""
tell application "Finder"
set toPath to (POSIX file "$1") as alias
set theKind to kind of toPath
if theKind is "Alias" then
set toPath to ((original item of toPath) as alias)
end if
end tell
return posix path of (toPath)
EOD`
builtin cd "$thePath";
}
更新。
私builtin cd
はcdコマンドを上書きできる@klanomathの回答に示されている行を使用しました 。だから私たちは今使うことができます:
cd /path/to/example-alias
または
cd /path/to/example
関数は、エイリアスの元のパスまたは通常のパスに戻り、cdする必要があります。
シンボリックリンク(UNIXエイリアス)はFinder内のFinderエイリアスと同じように見えますが、2つの完全に異なるタイプのエイリアスです。
シンボリックリンクは、それがつながるパスのみを保持し、リソースが移動された場合、または切断されたドライブまたは共有上にある場合、それぞれ永続的または一時的に切断されます。
Finderエイリアスは技術的にはFinderへの指示を含む通常のファイルです。Finderはこの情報を使用して、移動されたターゲットファイル/ディレクトリをある程度特定できます。エイリアスのターゲットリソースがマウントされたネットワーク共有ポイントにある場合、それを開くために共有ポイントにログインするために使用するキーチェーン項目の情報も保持します。
そのため、Finderエイリアスファイルを読み取るスクリプトまたはプログラムを作成しない限り、Finderエイリアスファイルはディレクトリとしてではなく、ターミナルのファイルとして使用されます。
または、現在のFinderエイリアスを削除して、代わりにシンボリックリンクを作成することもできます。コマンドはln -s /path/to/original
、現在のディレクトリにシンボリックリンクを作成することです。パスは、絶対パスまたは相対パスにすることができます。
osascript[9807:7154723] CFURLGetFSRef was passed an URL which has no scheme (the URL will not work with other CFURL routines)
このヒントを利用して、@ markunteのアプレットを変更して上記の警告メッセージを削除しました
# Overriding cd to enable make alias available in CLI
function cd {
if [ ${#1} == 0 ]; then
builtin cd
elif [ -d "${1}" ]; then
builtin cd "${1}"
elif [[ -f "${1}" || -L "${1}" ]]; then
thePath=`osascript <<EOD
set toPath to ""
tell application "Finder"
set toPath to (POSIX file ((do shell script "pwd")&"/$1")) as alias
set theKind to kind of toPath
if theKind is "Alias" then
set toPath to ((original item of toPath) as alias)
end if
end tell
return posix path of (toPath)
EOD`
builtin cd "$thePath";
else
builtin cd "${1}"
fi
}
ほとんどのオペレーティングシステム(Windows以外)と同様に、OS XはBashスクリプトをサポートしています。最初に、デスクトップ(または任意の場所)にファイルを作成します。
touch〜/ Desktop / PlexConnect.sh次に、実行可能になるようにファイルの権限を設定します。
chmod + x〜/ Desktop / PlexConnect.sh次に、選択したテキストエディターでスクリプトの内容を編集できます。システムがシェル(Bash)を使用して実行できるように、次の行で始まることを確認してください。
ファイルをダブルクリックすると、ターミナルが起動して実行されます。
ただし、このためのよりエレガントなソリューションは、コマンドを実行するAppleScriptアプリケーションを作成することです。「スクリプトエディター」アプリケーションを開き、以下を貼り付けます。
シェルスクリプト "/Applications/PlexConnect-master/PlexConnect.py"を管理者権限で実行しますこれを "アプリケーション"として保存し、好きな名前を付けます。それを開くと、OS Xの標準パスワードプロンプトが表示され、スクリプトが実行されてから閉じます。