mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 19:23:10 +02:00
6 lines
73 B
Bash
6 lines
73 B
Bash
#!/usr/bin/env bash
|
|
|
|
for file in "$@"; do
|
|
echo "Processing $file"
|
|
done
|