#!/bin/bash #Script to write the output into a file #Create output file, override if already present output=output_file.txt echo "<<>>" | tee -a $output #Write data to a file
確定! 回上一頁