You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
if [ -z "$name" ]; then
|
|
name="stranger"
|
|
fi
|
|
echo "Hello, $name!"
|
|
|
|
if [ -z "$upload" ]; then
|
|
echo "Looks like you didn't upload a file!"
|
|
else
|
|
FILE_SIZE=$(wc -c $upload | cut -d " " -f1)
|
|
echo "The size in bytes of $upload__name is $FILE_SIZE"
|
|
fi
|
|
|
|
|