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/sh | |
| # Script to copy a source file/directory to a destination with specified permissions and ownership | |
| # Usage: ./copy_if_exists.sh source destination user:group dir_perms [file_perms] | |
| copy_if_exists() { | |
| local source="$1" | |
| local target="$2" | |
| local owner="$3" | |
| local dir_perms="$4" |
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
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac |
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
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "blocks": [ | |
| { | |
| "segments": [ | |
| { | |
| "type": "node", | |
| "foreground": "green", | |
| "style": "plain", | |
| "template": " \ued0d {{ .Full }}" |
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
| [ | |
| { | |
| "id": "4ops.terraform", | |
| "name": "terraform", | |
| "publisher": "4ops", | |
| "version": "0.2.5" | |
| }, | |
| { | |
| "id": "bmewburn.vscode-intelephense-client", | |
| "name": "vscode-intelephense-client", |