Viewing File Contents
# Start in ~/unixclass
cd ~/unixclass
cat arrayDat.txt# Start in ~/unixclass
cd ~/unixclass
# Print the first 10 lines of arrayDat.txt
head arrayDat.txt
# Print the first 5 lines of arrayDat.txt
head -n 5 arrayDat.txtLast updated
Was this helpful?
