How to use:
./wordle.sh
Or try the unlimit mode:
| RUN export BUILD_PACKAGES="gnupg curl ca-certificates apt-transport-https" \ | |
| && export EXISTING_PACKAGES="$(mktemp)" && apt-mark showauto | sort > $EXISTING_PACKAGES \ | |
| && apt-get update && apt-get install -y --no-install-recommends $BUILD_PACKAGES \ | |
| && export NEW_PACKAGES="$(mktemp)" && apt-mark showauto | sort > $NEW_PACKAGES \ | |
| && export PACKAGES_TO_REMOVE="$(comm -23 $NEW_PACKAGES $EXISTING_PACKAGES)" \ | |
| \ | |
| && mkdir -p /usr/share/man/man1 \ | |
| && curl -s https://apt.corretto.aws/corretto.key | apt-key add - \ | |
| && echo 'deb https://apt.corretto.aws stable main' > /etc/apt/sources.list.d/corretto.list \ | |
| && apt-get update && apt-get install -y --no-install-recommends java-1.8.0-amazon-corretto-jdk \ |
Git sees every file in your working copy as one of three things:
Ignored files are usually build artifacts and machine generated files that can be derived from your repository source or should otherwise not be committed. Some common examples are:
| #!/bin/sh | |
| set -u | |
| set -e | |
| umask 0077 | |
| prefix="/opt/openssh" | |
| top="$(pwd)" | |
| root="$top/root" | |
| build="$top/build" |
| # The initial version | |
| if [ ! -f .env ] | |
| then | |
| export $(cat .env | xargs) | |
| fi | |
| # My favorite from the comments. Thanks @richarddewit & others! | |
| set -a && source .env && set +a |
| # See Remove default Apps from Windows 10 https://thomas.vanhoutte.be/miniblog/delete-windows-10-apps/ | |
| # See Debloat Windows 10 https://github.com/W4RH4WK/Debloat-Windows-10 | |
| # Command line to list all packages: Get-AppxPackage -AllUsers | Select Name, PackageFullName | |
| Get-AppxPackage Microsoft.Windows.ParentalControls | Remove-AppxPackage | |
| Get-AppxPackage Windows.ContactSupport | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.Xbox* | Remove-AppxPackage | |
| Get-AppxPackage microsoft.windowscommunicationsapps | Remove-AppxPackage # Mail and Calendar | |
| #Get-AppxPackage Microsoft.Windows.Photos | Remove-AppxPackage | |
| Get-AppxPackage Microsoft.WindowsCamera | Remove-AppxPackage |