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
| <script lang="ts"> | |
| import CheckIcon from '@lucide/svelte/icons/check' | |
| import ChevronsUpDownIcon from '@lucide/svelte/icons/chevrons-up-down' | |
| import { tick } from 'svelte' | |
| import Button from '$lib/components/ui/button/button.svelte' | |
| import * as Command from '$lib/components/ui/command' | |
| import * as Popover from '$lib/components/ui/popover' | |
| import { cn } from '$lib/utils' |
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
| docker rmi -f $(docker images | grep "<none>" | awk "{print \$3}") |
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
| $ git fetch --prune; | |
| $ git branch --remote --merged | | |
| grep origin | | |
| grep -v '>' | | |
| grep -v master | | |
| xargs -L1 | | |
| cut -d"/" -f2- | | |
| xargs git push origin --delete; | |
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
| COLOR_NC='\e[0m' # No Color | |
| COLOR_WHITE='\e[1;37m' | |
| COLOR_BLACK='\e[0;30m' | |
| COLOR_BLUE='\e[0;34m' | |
| COLOR_LIGHT_BLUE='\e[1;34m' | |
| COLOR_GREEN='\e[0;32m' | |
| COLOR_LIGHT_GREEN='\e[1;32m' | |
| COLOR_CYAN='\e[0;36m' | |
| COLOR_LIGHT_CYAN='\e[1;36m' | |
| COLOR_RED='\e[0;31m' |