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