Ubuntu Pastebin

Paste from manlin at Mon, 19 Sep 2016 15:20:22 +0000

Download as text
1
2
3
4
5
6
7
8
9
#!/bin/bash
echo "Your name please:"
read name
if echo $name | grep -q "\ ";
then
  echo "Contains spaces"
else
  echo $name
fi
Download as text