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