Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

How to go back in terminal

To go to the previous directory in terminal

$ cd ..
Comment

go line back terminal

- Position the Cursor:
  33[<L>;<C>H
     Or
  33[<L>;<C>f
  puts the cursor at line L and column C.
- Move the cursor up N lines:
  33[<N>A
- Move the cursor down N lines:
  33[<N>B
- Move the cursor forward N columns:
  33[<N>C
- Move the cursor backward N columns:
  33[<N>D

- Clear the screen, move to (0,0):
  33[2J
- Erase to end of line:
  33[K

- Save cursor position:
  33[s
- Restore cursor position:
  33[u
Comment

PREVIOUS NEXT
Code Example
Shell :: docker logs 
Shell :: bash find file in directory 
Shell :: linux remove root access 
Shell :: testing cors 
Shell :: remove soup tag 
Shell :: git reset add 
Shell :: windows ssh-copy-id 
Shell :: uninstall dependency npm 
Shell :: sum column bash 
Shell :: delete a branch from remote 
Shell :: This site can’t be reached 
Shell :: ntfsfix ubantu 
Shell :: Create a desktop file ubuntu 
Shell :: Mount EBS volume on Linux 
Shell :: bash how to run remote command 
Shell :: wp-cli search-replace 
Shell :: crear ramas git 
Shell :: how to list all versions of pip in ubuntu using grep 
Shell :: npm install webpack 
Shell :: zip linux exclude directory 
Shell :: git https to ssh 
Shell :: powershell for each loop 
Shell :: git discard unstaged files 
Shell :: flutter android sdkmanager not found 
Shell :: install minikube 
Shell :: batch delete all files in subfolders of type 
Shell :: how to configure httpd in amazon ec2 instance 
Shell :: git command history 
Shell :: git add gitignore 
Shell :: how to setup vim plugins 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =