8 lines
92 B
Bash
8 lines
92 B
Bash
#!/bin/bash
|
|
for file in *; do
|
|
if [ "$file" != "*" ] ; then
|
|
zip $file.zip $file
|
|
fi
|
|
done
|
|
|