mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-08-07 06:22:32 +08:00
8 lines
91 B
Plaintext
8 lines
91 B
Plaintext
for f in *
|
|
do
|
|
echo "Processing: $f"
|
|
done | tee log
|
|
|
|
echo "Done. Last processed was $f."
|
|
|