Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdullrahmen/alx-system_engineering-devops
https://github.com/abdullrahmen/alx-system_engineering-devops
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/abdullrahmen/alx-system_engineering-devops
- Owner: Abdullrahmen
- Created: 2023-06-07T14:34:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-14T00:32:50.000Z (5 months ago)
- Last Synced: 2024-06-15T01:34:04.685Z (5 months ago)
- Language: Shell
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Learning objectives
- How to create SSH keys
- What is the advantage of using `#!/usr/bin/env` bash over `#!/bin/bash`
- How to use `while`, `until` and `for` loops
- How to use `if`, `else`, `elif` and case condition statements
- How to use the `cut` command
- What are files and other comparison operators, and how to use them## Requirements
- Allowed editors: `vi`, `vim`, `emacs`
- All your files will be interpreted on `Ubuntu 20.04 LTS`
- All your files should end with a new line
- A README.md file, at the root of the folder of the project, is mandatory
- All your Bash script files must be executable
- You are not allowed to use `awk`
- Your Bash script must pass `Shellcheck` (version 0.7.0) without any error
- The first line of all your Bash scripts should be exactly `#!/usr/bin/env bash`
- The second line of all your Bash scripts should be a comment explaining what the script doing## Concepts
- `env`
- `cut`
- `for`
- `while`
- `until`
- `if`