sajad torkamani
#!/bin/bash

if [ -n "$1" ]; then
  echo "You provided '$1' as an argument"
else
  echo "You didn't provide any argument"
fi