Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 184 Bytes

task2.md

File metadata and controls

10 lines (10 loc) · 184 Bytes

Task 2

#!/bin/bash
INFILE=$1	#argv 1
OUTFILE=$2	#argv 2
if [ -e "$INFILE" ]	 # Ist infile lesbar?
then
    cat "$INFILE" >> "$OUTFILE" # füge infile in outfile hinzu
fi