Remove blank lines :g/^$/d g = all occurence, d = delete
Search and replace
Replace foo with bar :%s/foo/bar/g %s = all lines, all occurence :s/foo/bar/g s = current line, all occurence :5,12s/foo/bar/g lines 5-12, all occurence
In this article, I will try to use the administrator account to setup all necessary components for another IAM user to do all CodeCommit and CodeBuild related tasks. Finally, the IAM user is able to maintain CodeBuild projects with minimal permissions.
Below diagram illustrates the network design and layout of my testing environment:
In office, I have two LAN ports and the IPs are assigned by the DHCP server. Therefore, I cannot assign static IPs to the servers. I decided to use the retired router to setup a subnet, so that I can allocate static IP address to the server attached to the router.
The first number is how light or dark you want the color to be, followed by a semicolon, and then the actual number of the color.
Blue = 34
Green = 32
Light Green = 1;32
Cyan = 36
Red = 31
Purple = 35
Brown = 33
Yellow = 1;33
white = 1;37
Light Grey = 0;37
Black = 30
Dark Grey= 1;30
find . -type f -print0 | xargs -0 ls -lt --time-style="+%F %T"
cut command
1 2 3 4 5 6 7 8
-d -d':' # Use : as delimeter -c -c1-3 # 1-3 characters -c3- # 3rd character to end of line -c-8 # start of line to 8th character -f -f1-4,6,7 # fields 1-4, 6 and 7
cut -d':' -f1-4,6,7 test.txt
Check Linux version
1
cat /etc/os-release
Authenticating to Your Server Using SSH Keys
Creating SSH Keys:
1
$ ssh-keygen
Add public key to ~/.ssh/authorized_keys on target server
$ hexo init blog #blog is the folder to contains all hexo related files $ cd blog $ npm install $ git clone https://github.com/wzpan/hexo-theme-freemind.git themes/freemind
For security reasons, browsers restrict cross-origin HTTP requests initiated from within scripts (e.g. AJAX request). For below scenario, we need to modify the HTTP response headers:
$ git log --oneline c60c0d9 (HEAD -> release/dev, origin/release/dev) Upgrade node version 16675e8 Update oracledb version e5461ba Update oracledb version 4e70188 Change Nodejs version to 14 52cf369 Add GEO IP City Function
# Merge topic with current branch $ git merge topic Updating ea2980a..532a0fa Fast-forward README.md | 2 +-
git pull git fetch followed by git merge or git rebase (with --rebase)
FETCH_HEAD is a short-lived ref, to keep track of what has just been fetched from the remote repository
A---B---C master on origin
/
D---E---F---G master*
^
origin/master in your repository
A---B---C origin/master
/ \
D---E---F---G---H master
git fetch git fetch --all Fetch all remote branches git fetch origin master Fetch only remote master branch
git commit Record changes to the repository -a Automatically stage modified and deleted files but new files are not affected (use git add for new files)
git add Add file contents to the staging area(index)
git checkout Switch branches or restore working tree files git checkout [<branch>] -b - create a new branch -B - create a new branch or reset the branch
git show Shows one or more objects (blobs, trees, tags and commits).
git log --oneline
ancestry references ^: the parent of that commit ^2: the second parent of that commit (from the branch that was merged (say, topic)) ~: first parent ~2: first parent of first parent (it traverses the first parents the number of times you specify) ~~: first parent of first parent