Last active
April 5, 2025 23:39
-
-
Save fabiolimace/be518cc07fe7cdd7fe6b48e800ce28ac to your computer and use it in GitHub Desktop.
Modelos/Templates do Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/mawk -f | |
# | |
# description | |
# | |
BEGIN { | |
} | |
{ | |
# commands | |
} | |
END { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# description | |
# | |
parameter1=${1:-default} | |
parameter2=${2:-default} | |
function main { | |
local p1=${1:-default} | |
local p2=${2:-default} | |
# commands | |
} | |
main "$parameter1" "$parameter2"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
texto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment