Refactorization

This commit is contained in:
Mikołaj Lubiak 2022-06-17 16:38:05 +00:00
parent 25fb619cf4
commit bd070a5244
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
for f in $1/*.$2; do
#!/bin/env sh
for f in $1/$3.$2; do
cat $f | nc termbin.com 9999
done
done