-
Notifications
You must be signed in to change notification settings - Fork 0
/
blanko.bash
executable file
·62 lines (44 loc) · 2.25 KB
/
blanko.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
# Purpose: foo
# Usage: blanko.bash [first]
# Example: blanko.bash first
# Responsible: Foo Bar <em@il>
# License: CC BY-SA 4.0
# Version: 2015-01-01
# Based on:
################################################################################
# set some user serviceable vars #
################################################################################
################################################################################
################################################################################
######################### DON'T MESS BEHIND THIS LINE ##########################
################################################################################
################################################################################
################################################################################
# set some non-user serviceable vars #
################################################################################
# unset LANG and LC variables if you parse stdout-put of your commands for
# preventing problems with unanticipated languages
#unset LANG
#unset LC_ADDRESS
#unset LC_IDENTIFICATION
#unset LC_MEASUREMENT
#unset LC_MESSAGES
#unset LC_MONETARY
#unset LC_NAME
#unset LC_NUMERIC
#unset LC_PAPER
#unset LC_TELEPHONE
#unset LC_TIME
################################################################################
# define some functions #
################################################################################
################################################################################
################################################################################
##################################### Main #####################################
################################################################################
################################################################################
#cleanup
################################################################################
##################################### EOF ######################################
################################################################################