Guest User

Untitled

a guest
Nov 14th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. if [ $1 ]
  4. then
  5. echo "Bonjour" $1
  6.  
  7. else
  8. echo "Bonjour" $USERNAME
  9. fi
  10.  
  11.  
  12.  
  13.  
  14.  
  15. Resultat:
  16. raillere@Rai-Latitude-E5540:~$ ./bonjour.sh PATACHOU
  17. Bonjour PATACHOU
  18. raillere@Rai-Latitude-E5540:~$ ./bonjour.sh
  19. Bonjour raillere
Add Comment
Please, Sign In to add comment