Actions
Creazione testo molto grande¶
#! /bin/bash touch phrase.txt echo "Welcome" > phrase.txt touch mega.txt for (( c=1; c<=100000; c++ )) do cat phrase.txt | tr -d '\n' >> mega.txt done
Updated by Gabor Murray over 5 years ago · 1 revisions