git @ Cat's Eye Technologies The-Dipple / master sh / background_function.sh
master

Tree @master (Download .tar.gz)

background_function.sh @masterraw · history · blame

#!/bin/sh

# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
# For more information, please refer to <https://unlicense.org/>
# SPDX-License-Identifier: Unlicense

funky()
{
	for J in 1 2 3 4 5; do
		echo "--> $J"
		sleep 1
	done
}

funky &

for K in 1 2 3 4 5; do
	echo "$K <<<"
	sleep 1
done