Macカテゴリーの記事一覧

Finderまわりの設定

Mac

Terminal操作

Libraryディレクトリの表示/非表示
$ sudo chflags nohidden ~/Library #表示
$ sudo chflags hidden ~/Library #非表示
隠しファイルの表示/非表示
$ defaults write com.apple.finder AppleShowAllFiles TRUE #表示
$ defaults write com.apple.finder AppleShowAllFiles FALSE #非表示
  • Finderを再起動すると反映される
    $ killall Finder

FileZillaのショートカットキー(macOS編)

Mac

※Windowsユーザーの方はFileZillaのショートカットキー(Windows編)をご覧ください。

よく使うショートカットキー一覧

接続

  • サイトマネージャを開く
    • cmd + S
  • 接続しているサーバを切断
    • cmd + D
  • サーバ再接続
    • cmd + R

ブラウジング

  • ファイル一覧の内容を更新
    • F5
  • 同期ブラウジング機能のオン・オフ切り替え
    • cmd + Y
  • 1つ上のディレクトリに移動
    • cmd + ↑

ファイル操作

  • 選択中のファイルをもう一方のパネルの同名ファイルへ転送
    • cmd + ↓
  • ディレクトリを作成
    • cmd + shift + N
  • 選択中のファイルをリネーム
    • F2

リファレンス原文

Keyboard shortcuts – FileZilla Wiki

Keyboard Shortcut Description
F2 Rename selected file
F3 Search remote files
F5 Refreshes local and remote file and folder views
Tab Switches to the next view
Alt+Down Transfers the currently selected item to an item of the same name in the other pane
Alt+Up Navigates up one line in a tree view (same as Up Arrow), navigates to parent folder in file view
Ctrl+B Add bookmark
Ctrl+Shift+B Manage bookmarks
Ctrl+C Stops the current operation
Ctrl+D Disconnects from server
Ctrl+E Show files currently being edited
Ctrl+F Enables Quick Search on either remote or local site
Ctrl+I Directory listing filters …
Ctrl+M Manual transfer
Ctrl+Shift+N create a new directory
Ctrl+O Enable directory comparison
Ctrl+P Process queue
Ctrl+Q Exit
Ctrl+R Reconnects to server
Ctrl+S Opens the Site Manager
Ctrl+T Opens a new tab
Ctrl+U Preserve timestamps of transferred files
Ctrl+Y Toggle synchronized browsing
Ctrl+W Close tab
Enter Transfers the currently selected item if it is a file or expands it if it is a directory
Ctrl+PgUp/PgDn switches to next/previous tab
Up Arrow Moves up one item in the current view
Down Arrow Moves down one item in the current view
Left Arrow Nothing in a files view, Up one level in a tree view
Right Arrow Down one level in a tree view, if there are subfolders, nothing if there are none. Pressing once expands a collapsed node. Pressing again steps down into it.

Mac OS X で .bash_profile を使って PATH を通す

Mac

経緯

  • exportコマンドを使って環境変数 $PATH を上書きすることで、任意のディレクトリへパスを通すことができる。
  • が、一旦ターミナルを終了すると元の設定へ戻ってしまう。
    • 自分用コマンドを格納したディレクトリへパスを通しっぱなしにしたい。

やること

  1. ホームディレクトリに .bash_profile を作成
  2. 上記にexportコマンドを書き込む
  3. ターミナルを再起動

Read More