微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

mac - common key shortcuts and terminal operations

terminal key shortcuts:

  • Ctrl + a – go to the start of the command line
  • Ctrl + e – go to the end of the command line
  • Ctrl + k – delete from cursor to the end of the command line
  • Ctrl + u – delete from cursor to the start of the command line
  • Ctrl + w – delete from cursor to start of word (i.e. delete backwards one word)
  • Ctrl + y – paste word or text that was cut using one of the deletion shortcuts (such as the one above) after the cursor

terminal operations:

1. open google chrome from terminal

If you just want to open the Google Chrome from terminal instantly for once then open -a "Google Chrome" works fine from Mac Terminal.

If you want to use an alias to call Chrome from terminal then you need to edit the bash profile and add an alias on ~/.bash_profile or ~/.zshrc file.The steps are below :

  • Edit ~/.bash_profile or ~/.zshrc file and add the following line alias chrome="open -a 'Google Chrome'"
  • Save and close the file.
  • logout and relaunch Terminal or source ~/.bash_profile
  • Type chrome filename for opening a local file.
  • Type chrome url for opening url.

2. Atom open file from terminal

$ Atom .bash_profile

references:

1. https://stackoverflow.com/questions/34796888/how-to-open-google-chrome-from-terminal

2. https://skorks.com/2009/09/bash-shortcuts-for-maximum-productivity/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐