change touch command to usage in bash

This commit is contained in:
Kim Oliver Drechsel 2021-09-21 20:38:10 +02:00
parent e6efda6ced
commit d93cef60d3

View File

@ -22,7 +22,7 @@ steps:
pull: if-not-exists
commands:
- . $HOME/.bashrc
- for i in 1 2 3 4; do touch /tmp/testfile$i; done
- touch /tmp/testfile{1..4}
- ls -l /tmp
- trash /tmp/testfile*
- ls -l /tmp
@ -39,7 +39,7 @@ steps:
pull: if-not-exists
commands:
- . $HOME/.bashrc
- for i in 1 2 3 4; do touch /tmp/testfile$i; done
- touch /tmp/testfile{1..4}
- ls -l /tmp
- trash /tmp/testfile*
- ls -l /tmp
@ -58,7 +58,7 @@ steps:
pull: if-not-exists
commands:
- . $HOME/.bashrc
- for i in 1 2 3 4; do touch /tmp/testfile$i; done
- touch /tmp/testfile{1..4}
- ls -l /tmp
- trash /tmp/testfile*
- ls -l /tmp