Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 75fd7ab

Browse files
Add hyperlinks
1 parent 6d56e00 commit 75fd7ab

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

‎README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ ssh -L <remote_port>:localhost:<local_port> -i /path/to/key username@hostname
6767
### rsync
6868

6969
```bash
70-
# https://www.danielms.site/blog/rsync-cheatsheet/
7170
# -avzPn --stats -h --> archive verbose compressed progress-bar dry-run human-readable-stats
7271

7372
# pull files from remote server
@@ -80,6 +79,9 @@ rsync -avzPn ~/local/directory username@remote_host:/home/username/destination_d
8079
# using ssh key
8180
rsync -avzPn -e "ssh -i ~/ec2_keyfile.pem" user@remote:/home/folder /tmp/local_system/
8281
```
82+
83+
More details on [rsync cheatsheet](https://www.danielms.site/blog/rsync-cheatsheet/)
84+
8385
### Networking
8486

8587
```bash
@@ -108,10 +110,10 @@ wget -r -np -R "index.html" -nH -e robots=off --cut-dirs=X <download_URL>
108110
### grep
109111

110112
```bash
111-
# https://www.grymoire.com/Unix/Grep.html
112113
# find pattern in files
113114
grep --include=\*.{py, c, h} --exclude=\*.o --exclude-dir={dir1,dir2,*.dst} -rnw '/path/to/somewhere/' -e "pattern"
114115
```
116+
More `grep` funda [here](https://www.grymoire.com/Unix/Grep.html)
115117

116118
## System Setup
117119
### Essential Installs
@@ -254,5 +256,6 @@ git checkout existingbranch
254256
git branch newbranch # Create a new branch, saving the desired commits
255257
git reset --hard HEAD~3 # Move master back by 3 commits or put a commit hash
256258
git checkout newbranch # Go to the new branch that still has the desired commits
257-
258259
```
260+
261+
[Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials)

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /