All New

user:thomas gists created by user

title:mygist gists with given title

description:sync gists with given description

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

all:systemctl search all fields

Register

Login

All New Register Login

All gists

Recently created
Least recently created
Recently updated
Least recently updated
rootiest's Avatar

rootiest / bash-script-hygeine.md

0 likes
0 forks
1 files
Last active 1 day ago

Bash Scripting Basic Hygiene Checklist

Task Recommendation Why?
The Shebang #!/usr/bin/env bash Maximum portability across different Unix-like systems.
Error Handling set -euo pipefail Ensures the script stops at the first sign of trouble.
Quoting "$VARIABLE" Prevents word splitting and globbing (essential for paths).
Variable Style local_var="value" Lowercase prevents overwriting system-wide environment variables.
Boilerplate readonly CONSTANT Prevents accidental modification of fixed values.
Extensions .sh or none Helps with syntax highlighting and identifying file types.
rootiest's Avatar

rootiest / hello-world.cpp

0 likes
0 forks
1 files
Last active 1 day ago
1 #include <iostream>
2 #include <string>
3 using namespace std;
4
5 int main() {
6 string name;
7 cout << "\nWhat is your name (first and last)? ";
8 getline(cin, name);
9 cout << "\nHello, " << name << endl;
10 return 0;
Newer Older

Powered by Opengist ⋅ Load: 86ms⋅

English
Čeština Deutsch English Español Français Magyar Italiano 日本語 Polski Português Русский Türkçe Українська 中文 繁體中文