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
| sudo DEBIAN_FRONTEND=noninteractive apt-get update | |
| sudo DEBIAN_FRONTEND=noninteractive apt-get --yes --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade | |
| sudo DEBIAN_FRONTEND=noninteractive apt-get --yes --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" dist-upgrade | |
| sudo DEBIAN_FRONTEND=noninteractive apt-get -y install language-pack-en-base | |
| sudo DEBIAN_FRONTEND=noninteractive apt-get -y install python-software-properties | |
| sudo DEBIAN_FRONTEND=noninteractive apt-get -y install software-properties-common | |
| sudo DEBIAN_FRONTEND=noninteractive apt-get -y install bzip2 build-essential apt-transport-https | |
| # Install node |
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 | |
| # poke - enhanced touch command that creates directories if needed | |
| # Usage: poke file_path | |
| # Installation: Create `poke` file in `/usr/local/bin` and `chmod +x` | |
| if [ $# -eq 0 ]; then | |
| echo "Usage: poke <file_path>" | |
| exit 1 | |
| fi |
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 | |
| # Azure DevOps TFVC Changeset Diff Generator | |
| # | |
| # A bash script that generates unified diff patches from Azure DevOps TFVC (Team Foundation Version Control) changesets. This tool solves the common problem of extracting readable diffs from TFVC changesets, which Azure DevOps doesn't provide natively through # its API. | |
| # | |
| # Features | |
| # | |
| # - Fetches all files modified in a specific TFVC changeset | |
| # - Retrieves both current and previous versions of each file |
OlderNewer