Last active
November 15, 2016 19:06
-
-
Save matheo/74a3a44b9435482640e87dc39d635ccf to your computer and use it in GitHub Desktop.
Bash Scripts
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
ENV LANG=en_GB.UTF-8 | |
RUN apt-get install -y locales && \ | |
sed -i -e "s/# $LANG.*/$LANG.UTF-8 UTF-8/" /etc/locale.gen && \ | |
dpkg-reconfigure --frontend=noninteractive locales && \ | |
update-locale LANG=$LANG |
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/bash | |
( set -o posix ; set ) | less |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment