OXIESEC PANEL
- Current Dir:
/
/
etc
/
profile.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
๐
..
-
05/20/2025 05:23:23 PM
rwxr-xr-x
๐
01-locale-fix.sh
96 bytes
09/27/2019 06:24:34 PM
rw-r--r--
๐
Z97-byobu.sh
1.52 KB
12/04/2017 01:46:48 PM
rw-r--r--
๐
Z99-cloud-locale-test.sh
3.34 KB
10/04/2019 03:35:54 PM
rwxr-xr-x
๐
Z99-cloudinit-warnings.sh
873 bytes
10/04/2019 03:35:54 PM
rwxr-xr-x
๐
apps-bin-path.sh
835 bytes
02/18/2022 02:06:51 PM
rw-r--r--
๐
bash_completion.sh
664 bytes
04/02/2018 02:16:46 AM
rw-r--r--
๐
cedilla-portuguese.sh
1003 bytes
12/29/2015 10:57:42 AM
rw-r--r--
๐
mail.sh
88 bytes
10/02/2020 11:26:16 AM
rw-r--r--
Editing: cedilla-portuguese.sh
Close
# cedilla-portuguese.sh (c) 2015 Canonical # Author: Gunnar Hjalmarsson <gunnarhj@ubuntu.com> # # Released under the GPL # # File: /etc/profile.d/cedilla-portuguese.sh # # The desired behavior when typing in certain languages is that # '+c results in the รง character, and not ฤ. In Portuguese this # can be achieved by setting LC_CTYPE to either pt_BR.UTF-8 or # pt_PT.UTF-8. Related files: # /usr/share/X11/locale/pt_BR.UTF-8/Compose # /usr/share/X11/locale/pt_PT.UTF-8/Compose # # When the selected display language is Portuguese (either Brazilian # Portuguese or Portuguese as spoken in Portugal), LC_CTYPE inherits # the desired value from LANG. Due to this file, setting the Regional # Formats value to Portuguese (Brazil) or Portuguese (Portugal) is # sufficient to enable the just mentioned behavior, even if the # display language is something else but Portuguese. # if [ "${LC_IDENTIFICATION%_*}" = 'pt' -a "${LANG%_*}" != 'pt' ]; then export LC_CTYPE="${LC_IDENTIFICATION%.*}.UTF-8" fi