Skip to content

Instantly share code, notes, and snippets.

@ko1nksm
ko1nksm / posix_array.sh
Created February 11, 2025 03:54
位置パラメータを変数にバックアップして後で戻す
#!/bin/sh
set -eu
[ "${BASH_VERSION:-}" ] && shopt -s expand_aliases
append_parray() {
set -- "$1" "$2" "${2#*\'}" ''
until [ "$2" = "$3" ] && eval "$1=\"\${$1} '\$4\$3'\""; do
set -- "$1" "$3" "${3#*\'}" "$4${2%%\'*}'\"'\"'"
done
@ko1nksm
ko1nksm / CGoL.sh
Last active February 3, 2023 12:15 — forked from ytaki0801/CGoL.sh
Conway's Game of Life in POSIX Shell
#!/bin/sh
xs=80 ys=35
ORIGIN=$(clear) LF='
'
xorshift32=$(date +%s)
xorshift32() {
set -- "$1" "$xorshift32"
set -- "$1" $(( $2 ^ (($2 << 13) & 0xFFFFFFFF) ))
@ko1nksm
ko1nksm / shells.svg
Last active February 5, 2025 18:25
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ko1nksm
ko1nksm / keycode.sh
Created December 25, 2021 06:59
Display key code
#!/bin/sh
set -euf
stty=$(stty -g)
trap 'stty "$stty"' EXIT
stty -echo -icanon
tpid=""
while :; do
We couldn’t find that file to show.