ID | Algorithm |
This file contains 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
NEWT_COLOR_PALETTE_DIALOGS="$(shell cat configs/whiptail-theme-green.cfg)" | |
# remember that GNU Make will create a new subshell if we don't use ; character | |
# (some like this could happen if we forget to use \ character when we've multiple lines) | |
WHIPTAIL_COLORED=export NEWT_COLORS=$(NEWT_COLOR_PALETTE_DIALOGS); whiptail | |
box-alert: | |
$(WHIPTAIL_COLORED) \ | |
--title "Alert" \ | |
--msgbox "something to describe here" 10 50 \ |
This file contains 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
#!/usr/bin/env sh | |
## Set newt color palette for dialogs | |
NEWT_COLORS_0=' | |
root=,blue | |
' | |
NEWT_COLORS_1=' | |
root=,blue | |
checkbox=,blue |
This file contains 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 | |
# | |
# git-subtree.sh: split/join git repositories in subdirectories of this one | |
# | |
# Copyright (C) 2009 Avery Pennarun <[email protected]> | |
# | |
if test -z "$GIT_EXEC_PATH" || ! test -f "$GIT_EXEC_PATH/git-sh-setup" || { | |
test "${PATH#"${GIT_EXEC_PATH}:"}" = "$PATH" && | |
test ! "$GIT_EXEC_PATH" -ef "${PATH%%:*}" 2>/dev/null |
Based on https://www.gnu.org/software/make/manual/html_node/Quick-Reference.html
Directive | Description |
---|---|
define variable define variable = define variable := define variable ::= define variable += define variable ?= endef |
Define multi-line variables. |
undefine variable |
Undefining variables. |
This file contains 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
#directorios = $(sort $(dir $(wildcard ./*/.))) | |
libros = $(wildcard *.pdf) | |
archivos= $(wildcard *.tar.gz) | |
libros_comprimidos = $(patsubst %.pdf, %.tar.gz, $(libros)) | |
archivos_descomprimidos = $(patsubst %.tar.gz, %.pdf, $(archivos)) | |
# TODO: esto no funcionaría.. | |
#archivos:=$(foreach libro, $(libros), $(libro).tar.gz) |
This file contains 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
# Nota: renombrar el archivo dividir-archivo.mk por Makefile | |
# | |
# Ejemplo de uso en un emulador de terminal de Linux | |
# | |
# make help | |
# make dividir-archivo NAME=patrones-en-java.pdf | |
# make unir-partes NAME=patrones-en-java.pdf | |
MAX_SIZE=5MB |