设为首页 收藏本站
查看: 899|回复: 0

[经验分享] Terminal Cheatsheet for Mac ( basics )

[复制链接]

尚未签到

发表于 2016-5-17 12:22:20 | 显示全部楼层 |阅读模式

SHORTCUTS



Key/Command
Description


Ctrl + A
Go to the beginning of the line you are currently typing on


Ctrl + E
Go to the end of the line you are currently typing on


Ctrl + L
Clears the Screen


Command + K
Clears the Screen


Ctrl + U
Clears the line before the cursor position. If you are at the end of the line, clears the entire line.


Ctrl + H
Same as backspace


Ctrl + R
Let’s you search through previously used commands


Ctrl + C
Kill whatever you are running


Ctrl + D
Exit the current shell


Ctrl + Z
Puts whatever you are running into a suspended background process. fg restores it.


Ctrl + W
Delete the word before the cursor


Ctrl + K
Clear the line after the cursor


Ctrl + T
Swap the last two characters before the cursor


Esc + T
Swap the last two words before the cursor


Alt + F
Move cursor forward one word on the current line


Alt + B
Move cursor backward one word on the current line


Tab
Auto-complete files and folder names


CORE
COMMANDS


cd Home directory
cd [folder] Change directory
cd ~ Home directory, e.g. ‘cd ~/folder/’
cd / Root of drive
ls Short listing
ls -l Long listing
ls -a Listing incl. hidden files
ls -lh Long listing with Human readable file sizes
ls -R Entire content of folder recursively
sudo [command] Run command with the security privileges of the superuser (Super User DO)
open [file] Opens a file ( as if you double clicked it )
top Displays active processes. Press q to quit
nano [file] Opens the Terminal it’s editor
pico[file] Opens the Terminal it’s editor
q Exit
clear Clear screen


COMMAND
HISTORY


history n Shows the stuff typed – add a number to limit the last n items
ctrl-r Interactively search through previously typed commands
![value] Execute the last command typed that starts with ‘value’
!! Execute the last command typed


FILE
MANAGEMENT


touch [file] Create new file
pwd Full path to working directory
.. Parent/enclosing directory, e.g.
‘ls -l ..’ = Long listing of parent directory
‘cd ../../’ = Move 2 levels up
. Current folder
cat Concatenate to screen
rm [file] Remove a file, e.g. rm [file] [file]
rm -i [file] Remove with confirmation
rm -r [dir] Remove a directory and contents
rm -f [file] Force removal without confirmation
rm -i [file] Will display prompt before
cp [file] [newfile] Copy file to file
cp [file] [dir] Copy file to directory
mv [file] [new filename] Move/Rename, e.g. mv -v [file] [dir]


DIRECTORY
MANAGEMENT


mkdir [dir] Create new directory
mkdir -p [dir]/[dir] Create nested directories
rmdir [dir] Remove directory ( only operates on empty directories )
rm -R [dir] Remove directory and contents


PIPES
– Allows to combine multiple commands that generate output


more Output content delivered in screensize chunks
> [file] Push output to file, keep in mind it will get overwritten
>> [file] Append output to existing file
< Tell command to read content from a fi


HELP


[command] -h Offers help
[command] —help Offers help
[command] help Offers help
reset Resets the terminal display
man [command] Show the help for ‘command’
whatis [command] Gives a one-line description of ‘command’








  
Last edited by 0nn0, a year ago



  
  
  来源:
  
  grab the full resolution (2500×1600) version here
.
  http://i.imgur.com/1c9y0.png
  
  


Shutdown your Mac using a terminal command

  The shutdown
command comes in handy if you want to shutdown or
reboot your Mac at a specific time. Here are some of the examples. You
should be a super user to use these commands.

sudo
shutdown [
options]
when [
message]







  Some examples.
  

Shutdown immediately:

sudo
shutdown -h
now







  Restart immediately:

sudo
shutdown -r
now







  Shutdown at 9 pm:

sudo
shutdown -h
21
:00







  Shutdown in 5 minutes:

sudo
shutdown -h
+5







  Restart immediately

sudo
reboot







  Shutdown immediately

sudo
halt







  If you are not an admin user non of the above commands are going to help. If that’s the case try the following commands.
  

Shutdown immediately:

osascript -
e 'tell application "System Events" to shut down'







  Restart immediately:

osascript -
e 'tell application "System Events" to restart'







  Sleep:

osascript -
e 'tell application "System Events" to sleep'







  Logout:

osascript -
e 'tell application "System Events" to log out'








Be Sociable, Share!
  
  

Linux / Unix: curl Command Download File Example
  
  I
know how to use wget command
to grab files. But, how do you download file using curl command line
under Linux / Mac OS X / BSD or Unix like operating systems?


GNU wget is a free utility for non-interactive download
of files from the Web. curl is another tool to transfer data from or to
a server, using one of the supported protocols such as HTTP, HTTPS,
FTP, FTPS, SCP, SFTP, TFTP, DICT, TELNET, LDAP or FILE). The command is
designed to work without user interaction. curl offers many features
such as:


  • Proxy support.
  • User authentication.
  • FTP upload.
  • HTTP post.
  • SSL connections.
  • Cookies.
  • File transfer resume and more.

curl download file
  The syntax is as follows to grab (download) files from remote http/ftp server:

curl -o output.file
http://server1.cyberciti.biz/file
.tar
.gz

  OR

curl -O http://server1.cyberciti.biz/file
.tar
.gz

  OR

curl --remote-name http://server1.cyberciti.biz/file
.tar
.gz
  You can download a web page and store in a local file as follows:

curl -o nixcraft.html http://www.cyberciti.biz/low.html

  You can grab or download multiple files as follows:

curl -O http://www.cyberciti.biz/low.html -O http://bash.cyberciti.biz/dl/581
.sh
.zip

curl download file from an ssh server
  You can grab file securely using from an SSH server using SFTP:

curl -u username sftp://server1.cyberciti.biz/path/to/file
.txt

  OR (note ~ means your $HOME)

curl -u vivek sftp://home1.cyberciti.biz/~/docs/resume.pdf

  You can grab a file from an SSH server using SCP using a private key to authenticate. The syntax is:

curl -u username: --key ~/.ssh
/id_rsa --pubkey ~/.ssh
/id_rsa.pub scp
://home1.cyberciti.biz/~/Videos/rhn_register.ogv
  Where,



  • -u username
    - Specify the user name (and optional password) to use for server authentication.

  • -u username:password
    - Specify the user name (and optional password) to use for server authentication.

  • --key ~/.ssh/id_rsa
    - SSL or SSH private key file name. Allows you to provide your private key in this separate file.

  • --pubkey ~/.ssh/id_rsa.pub
    - SSH Public key file name. Allows you to provide your public key in this separate file.

  • scp://home1.cyberciti.biz/~/Videos/rhn_register.ogv
    - Use scp protocol and download file from my home server called home1.cyberciti.biz.

Curl: Download a file using username and password
  The syntax is as follows to grab a file using ftp username and password:

curl ftp://username:passwd@ftp1.cyberciti.biz:21/path/to/backup.tar.gz

  OR

curl -u UserName:PassWord ftp
://ftp1.cyberciti.biz:21
/backups/07
/07
/2012
/mysql.blog.sql.tar
.gz
  Secure ftp user (ftp with ssl) can pass the --ftp-ssl option to curl command:

curl --ftp-ssl -u UserName:PassWord ftp
://ftp1.cyberciti.biz:21
/backups/07
/07
/2012
/mysql.blog.sql.tar
.gz
HTTP authentication
  HTTP user can use the following syntax:

 curl http://username:passwd
@server1.cyberciti.biz/file
/path/data.tar
.gz

  OR

 curl -u Username:Password http://server1.cyberciti.biz/file
/path/data.tar
.gz

  
  
  

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-218266-1-1.html 上篇帖子: 在Mac下安装mit-scheme 下篇帖子: MAC 和 Postgresql 第二篇
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表