First stop (close) FileZilla. Then navigate to the home directory by typing
cd ~.
Then locate
.filezilla
by typing
ls -a (optional, obviously!).
Remove it by using:
rm -rf ~/.filezillaNow open FileZilla again!
cd ~.
Then locate
.filezilla
by typing
ls -a (optional, obviously!).
Remove it by using:
rm -rf ~/.filezillaNow open FileZilla again!
/Users/name/myFolder/appOr you can navigate to its folder with
cd /Users/name/myFolder
and then use
./app
to run it.
$PATH
. But if you don't want to move the application (and assuming you don't want to change your
$PATH
either), then you can add a shortcut for your application to a folder that is included in
$PATH
. To see the list of these folders, type
echo $PATHand then pick one of the folders displayed. For example,
/usr/local/bin
. Now we will add a symbolic link (like a shortcut) to our application in this folder.
This can be done by
ln -s /Users/name/myFolder/app /usr/local/bin
app
in any terminal! (Of course,
app
should be the specific name of your app.)
inkscapein a Terminal window. After this, the GUI window for Inkscape opens.
tell application "Terminal" do script "`which yourAppName`; exit" end tell(Make sure you replace yourAppName with the name of the App!)
tell application "Terminal"
do script "`which yourAppName` & exit"
if (count of (every window whose visible is true)) ≤ 1 then
quit
else
close window 1 without saving
end if
end tell