14 lines
209 B
Bash
Executable File
14 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
shopt -s expand_aliases
|
|
|
|
alias rt="./rtracker"
|
|
|
|
rt Testing sleep... \
|
|
%% sleep 3
|
|
rt Hello world? \
|
|
%o echo Hello world
|
|
rt Producing some error \
|
|
%% rm not_exist
|
|
rt Just do it \
|
|
%t rm not_exist
|