linux_create.sh 120 B

12345678
  1. #!/bin/bash
  2. rm -f first.txt second.txt 2> /dev/null
  3. echo "un" > first.txt
  4. echo "deux" > second.txt
  5. git add first.txt