shelllings

a practical way to learn shell
git clone https://git.davidvoz.net/shelllings.git
index
logs
tree
license

05_creating.sh
1#!/bin/sh
2
3set -eu
4RED="\033[31m"
5GREEN="\033[32m"
6RESET="\033[0m"
7
8sh exercises/05_creating.sh
9
10if find . -mindepth 4 -type f -name file | grep -q .; then
11 printf "${GREEN}Passed${RESET}\n"
12else
13 printf "${RED}Failed${RESET}\n"
14 exit 1
15fi