You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
261 B

2 years ago
#!/bin/bash
# Author: Nils Gerstner
pipe=$1
err_pipe=$2
echo "$$ The time is $(date)" >$pipe 2>$err_pipe
edf "$$ The time is $(date)" >$pipe 2>$err_pipe
ls |tail -n1 >$pipe 2>$err_pipe
echo "$$ The time is $(date)" 2>$err_pipe
echo "quit" >$pipe 2>$err_pipe