Re: "cd " and "tail -f" on a file
Re: "cd " and "tail -f" on a file
- Subject: Re: "cd " and "tail -f" on a file
- From: Paul Skinner <email@hidden>
- Date: Mon, 17 Mar 2003 12:26:06 -0500
On Monday, March 17, 2003, at 11:05 AM, Todd Reid wrote:
Paul,
This works (thank you), returning a correct list of the files in the
targeted directory.
HOWEVER, what I need is to ultimately "tail -f" a file in that
directory in
the Terminal itself.
So when I direct this script (accounting for the "do script" vs "do
shell
script" differences") to the Terminal, I get a permissions denied
error.
Thanks,
Todd
Ok, getting closer. : ) Now try this one.
set f to (choose file)
tell application "Finder"
set c to quoted form of POSIX path of ((container of f) as alias)
set n to name of f
if extension hidden of f then
set e to name extension of f
else
set e to ""
end if
end tell
tell application "Terminal"
activate
do script "cd " & c & " ; tail -f " & quoted form of (n & e)
end tell
Paul Skinner
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.