summaryrefslogtreecommitdiff
path: root/python2/examples/transient_file.sh
blob: 50f50c81347ef156f4e707e9a85c64cc6a14e08b (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

for a in 1 2 3 4 5 6 7 8 9 10
do
  touch /tmp/test1234;
  echo -ne "42" > /tmp/test1234;
  rm -f /tmp/test1234;
done