Skip to content

Instantly share code, notes, and snippets.

View Gems's full-sized avatar
⌨️
Typing…

Eduard Gomoliako Gems

⌨️
Typing…
View GitHub Profile
@Gems
Gems / iterate.sh
Last active February 15, 2025 07:14
alias *="sh iterate.sh "
#!/bin/bash
path=$PWD
for dir in $path/*;
do
if [ -d $dir ]; then
echo "\033[0;33m$dir>\033[0;34m $1 $2\033[00m"
cd "$dir"
$@
fi