Skip to content

Instantly share code, notes, and snippets.

@fabiolimace
Last active April 5, 2025 23:39
Show Gist options
  • Save fabiolimace/be518cc07fe7cdd7fe6b48e800ce28ac to your computer and use it in GitHub Desktop.
Save fabiolimace/be518cc07fe7cdd7fe6b48e800ce28ac to your computer and use it in GitHub Desktop.
Modelos/Templates do Ubuntu
#!/usr/bin/mawk -f
#
# description
#
BEGIN {
}
{
# commands
}
END {
}
#!/bin/sh
#
# description
#
parameter1=${1:-default}
parameter2=${2:-default}
function main {
local p1=${1:-default}
local p2=${2:-default}
# commands
}
main "$parameter1" "$parameter2";

Título

Tópico

Subtópico

Subtópico

Tópico

Subtópico

Subtópico


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment