Compare commits

...

17 Commits

Author SHA1 Message Date
Bonnie I-Man Ng
3e6bbf7c20 fix issue #36 2023-03-15 10:02:31 +00:00
Bonnie I-Man Ng
29902039d8 remove duplicated command 2023-03-15 09:38:46 +00:00
Bonnie I-Man Ng
b6ff5a9fcc edit command order 2023-03-15 08:19:29 +00:00
Bonnie I-Man Ng
1c5bd35608 update vi-mode #39 2023-03-15 08:18:16 +00:00
Bonnie I-Man Ng
6054869173
Merge pull request #39 from mtatton/master
[ vi ] readline vi mode
2023-03-15 16:15:29 +08:00
Bonnie I-Man Ng
a67ee7e167 update ctrl key order 2023-03-15 07:44:51 +00:00
Bonnie I-Man Ng
58b858888a modify description for #41 2023-03-15 07:41:55 +00:00
Bonnie I-Man Ng
9ae2d9403b
Merge pull request #41 from 5c077m4n/add-ctrl-z-term-cmd
Add `Ctrl + z` command description
2023-03-15 15:40:24 +08:00
Bonnie I-Man Ng
55fc47b685 modify output example for #43 2023-03-15 07:37:37 +00:00
Bonnie I-Man Ng
ca89df83dc
Merge pull request #43 from chapmanjacobd/patch-1
include full output
2023-03-15 15:34:45 +08:00
Bonnie I-Man Ng
1b42d476e4 add example for mktemp 2023-03-15 07:29:08 +00:00
Bonnie I-Man Ng
5d5b83b7b8
Merge pull request #44 from chapmanjacobd/patch-2
add mktemp
2023-03-15 15:17:21 +08:00
Roee Shapira
5f0c40efc5
Add Ctrl + z command desc
Signed-off-by: Roee Shapira <roee.shapira@tensorleap.ai>
Signed-off-by: Roee Shapira <ro33.sha@gmail.com>
2022-05-24 01:17:25 +03:00
Jacob Chapman
57085df9be
add mktemp 2022-05-14 12:54:23 -05:00
Jacob Chapman
7d1c903031
include full output 2022-05-14 12:18:16 -05:00
Unknown
a59f19e9cf [ vi ] readline vi mode
Signed-off-by: Unknown <dev@null>
2022-05-09 20:14:34 +02:00
Unknown
c3a29f735a vi edit mode
Signed-off-by: Unknown <dev@null>
2022-05-09 20:14:34 +02:00

View File

@ -33,22 +33,23 @@ Here's a more stylish version of [Bash-Oneliner](https://onceupon.github.io/Bash
##### Using Ctrl keys
```
Ctrl + a : move to the beginning of line.
Ctrl + d : if you've type something, Ctrl + d deletes the character under the cursor, else, it escapes the current shell.
Ctrl + e : move to the end of line.
Ctrl + k : delete all text from the cursor to the end of line.
Ctrl + l : equivalent to clear.
Ctrl + n : same as Down arrow.
Ctrl + p : same as Up arrow.
Ctrl + q : to resume output to terminal after Ctrl + s.
Ctrl + r : begins a backward search through command history.(keep pressing Ctrl + r to move backward)
Ctrl + s : to stop output to terminal.
Ctrl + q : to resume output to terminal after Ctrl + s.
Ctrl + a : move to the beginning of line.
Ctrl + e : move to the end of line.
Ctrl + d : if you've type something, Ctrl + d deletes the character under the cursor, else, it escapes the current shell.
Ctrl + k : delete all text from the cursor to the end of line.
Ctrl + x + backspace : delete all text from the beginning of line to the cursor.
Ctrl + t : transpose the character before the cursor with the one under the cursor, press Esc + t to transposes the two words before the cursor.
Ctrl + w : cut the word before the cursor; then Ctrl + y paste it
Ctrl + u : cut the line before the cursor; then Ctrl + y paste it
Ctrl + _ : undo typing.
Ctrl + l : equivalent to clear.
Ctrl + w : cut the word before the cursor; then Ctrl + y paste it
Ctrl + x + backspace : delete all text from the beginning of line to the cursor.
Ctrl + x + Ctrl + e : launch editor defined by $EDITOR to input your command. Useful for multi-line commands.
Ctrl + z : stop current running process and keep it in background. You can use `fg` to continue the process in the foreground, or `bg` to continue the process in the background.
Ctrl + _ : undo typing.
```
##### Change case
```bash
@ -59,6 +60,7 @@ Esc + l
Esc + c
# converts letter under the cursor to uppercase, rest of the word to lowercase.
```
##### Run history number (e.g. 53)
```bash
!53
@ -129,6 +131,31 @@ $USER current username
$HOSTNAME current hostname
```
##### Using vi-mode in your shell
```bash
set -o vi
# change bash shell to vi mode
# then hit the Esc key to change to vi edit mode (when `set -o vi` is set)
k
# in vi edit mode - previous command
j
# in vi edit mode - next command
0
# in vi edit mode - beginning of the command
R
# in vi edit mode - replace current characters of command
2w
# in vi edit mode - next to 2nd word
b
# in vi edit mode - previous word
i
# in vi edit mode - go to insert mode
v
# in vi edit mode - edit current command in vi
man 3 readline
# man page for complete readline mapping
```
## Variable
[[back to top](#handy-bash-one-liners)]
##### Variable substitution within quotes
@ -144,7 +171,7 @@ echo '$foo'
# single quotes within double quotes will not cancel expansion and will be part of the output
echo "'$foo'"
# 'bar'
# doubled single quotes act as double quotes making variables expand
# doubled single quotes act as if there are no quotes at all
echo ''$foo''
# bar
```
@ -2074,11 +2101,6 @@ killall pulseaudio
# then press Alt-F2 and type in pulseaudio
```
##### When sound not working
```bash
killall pulseaudio
```
##### List information about SCSI devices
```bash
lsscsi
@ -3144,11 +3166,40 @@ rsync -av directory user@ip_address:/path/to/directory.bak
# skip files that are newer on receiver (i prefer this one!)
```
##### Create a temporary directory and `cd` into it
```bash
cd $(mktemp -d)
# for example, this will create a temporary directory "/tmp/tmp.TivmPLUXFT"
```
##### Make all directories at one time!
```bash
mkdir -p project/{lib/ext,bin,src,doc/{html,info,pdf},demo/stat}
# -p: make parent directory
# this will create project/doc/html/; project/doc/info; project/lib/ext ,etc
# this will create:
# project/
# project/bin/
# project/demo/
# project/demo/stat/
# project/doc/
# project/doc/html/
# project/doc/info/
# project/doc/pdf/
# project/lib/
# project/lib/ext/
# project/src/
#
# project/
# ├── bin
# ├── demo
# │ └── stat
# ├── doc
# │ ├── html
# │ ├── info
# │ └── pdf
# ├── lib
# │ └── ext
# └── src
```
##### Run command only if another command returns zero exit status (well done)