Skip to content

Commit

Permalink
Merge pull request #2585 from bgoonz/master
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoonz authored Jun 17, 2022
2 parents 79c5634 + 06c82be commit 797b19d
Show file tree
Hide file tree
Showing 248 changed files with 240,434 additions and 22,137 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: bgoonz
assignees: ''

---

Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
name: Feature request
about: Suggest an idea for this project
title: Feature request
title: ''
labels: ''
assignees: bgoonz
assignees: ''

---

Expand Down
25 changes: 0 additions & 25 deletions .github/workflows/lint.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/npm-gulp.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/workflows/test.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/webpack.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,3 @@ node_modules/

*.cache
*public

# Local Netlify folder
.netlify
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engines" : { "node" : ">=0.14" } }
{ "engines" : { "node" : ">=14" } }
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,6 @@ helpful reference guides

### [Tips](/docs/tips/)


[Learn More](/docs/tips/)

### [Tools](/docs/tools/)
Expand Down Expand Up @@ -971,8 +970,6 @@ helpful reference guides

### [Tips](/docs/tips/)



[Learn More](/docs/tips/)

### [Tools](/docs/tools/)
Expand Down
55 changes: 50 additions & 5 deletions bash-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,58 @@

###### code

```bash

```console
#!/bin/bash
revert
## SHORTCUTS and HISTORY


CTRL+A # move to beginning of line
CTRL+B # moves backward one character
CTRL+C # halts the current command
CTRL+D # deletes one character backward or logs out of current session, similar to exit
CTRL+E # moves to end of line
CTRL+F # moves forward one character
CTRL+G # aborts the current editing command and ring the terminal bell
CTRL+H # deletes one character under cursor (same as DELETE)
CTRL+J # same as RETURN
CTRL+K # deletes (kill) forward to end of line
CTRL+L # clears screen and redisplay the line
CTRL+M # same as RETURN
CTRL+N # next line in command history
CTRL+O # same as RETURN, then displays next line in history file
CTRL+P # previous line in command history
CTRL+Q # resumes suspended shell output
CTRL+R # searches backward
CTRL+S # searches forward or suspends shell output
CTRL+T # transposes two characters
CTRL+U # kills backward from point to the beginning of line
CTRL+V # makes the next character typed verbatim
CTRL+W # kills the word behind the cursor
CTRL+X # lists the possible filename completions of the current word
CTRL+Y # retrieves (yank) last item killed
CTRL+Z # stops the current command, resume with fg in the foreground or bg in the background

ALT+B # moves backward one word
ALT+D # deletes next word
ALT+F # moves forward one word
ALT+H # deletes one character backward
ALT+T # transposes two words
ALT+. # pastes last word from the last command. Pressing it repeatedly traverses through command history.
ALT+U # capitalizes every character from the current cursor position to the end of the word
ALT+L # uncapitalizes every character from the current cursor position to the end of the word
ALT+C # capitalizes the letter under the cursor. The cursor then moves to the end of the word.
ALT+R # reverts any changes to a command you've pulled from your history if you've edited it.
ALT+? # list possible completions to what is typed
ALT+^ # expand line to most recent match from history

CTRL+X then ( # start recording a keyboard macro
CTRL+X then ) # finish recording keyboard macro
CTRL+X then E # recall last recorded keyboard macro
CTRL+X then CTRL+E # invoke text editor (specified by $EDITOR) on current command line then execute resultes as shell commands

BACKSPACE # deletes one character backward
DELETE # deletes one character under cursor

history # shows command line history
!! # repeats the last command
Expand Down Expand Up @@ -99,7 +144,7 @@ cp -r <dir1> <dir2> # copy <dir1> into <dir2> including sub-directorie
pwd # tells you where you currently are
cd ~ # changes to home.
cd - # changes to previous working directory
```


## SSH, SYSTEM INFO & NETWORK COMMANDS

Expand Down Expand Up @@ -581,7 +626,7 @@ find . -name "* *" -type d | rename 's/ /_/g'
find . -name "* *" -type f | rename 's/ /_/g'
```

```console
````console

```console
find $dir -type f | sed 's|\(.*/\)[^A-Z]*\([A-Z].*\)|mv \"&\" \"\1\2\"|' | sh
Expand Down Expand Up @@ -610,7 +655,7 @@ fs.writeFile('output.md', cat, err => {
if (err) throw err;
});

```
````

---

Expand Down
File renamed without changes.
Loading

0 comments on commit 797b19d

Please sign in to comment.