display on the standard output the content of the text file in same sequence as the arguments.
more is a command to view (but not modify) the contents of a text file one screen.
return
to go one line down.space
to go one page down.b
to go one page up.less is similar to more but with more features
return
to go one line down.space
to go one page down.b
to go one page up./ pattern
to search pattern in file.n
to jump to next occurence.g
to go to the first lineG
to the last line$head ~bneron/DataBio/Sequences/Nucleique/qr1Large.fasta
>Seq0 qr1 sequence
gtcagaccttcctcctcagaagctcacagaaaaacacgctttctgaaagattccacactcaatgccaaaatataccacag
gaaaattttgcaaggctcacggatttccagtgcaccactggctaaccaagtaggagcacctcttctactgccatgaaagg
aaaccttcaaaccctaccactgagccattaactaccatcctgtttaagatctgaaaaacatgaagactgtattgctcctg
...
it's very useful specially when the files are large.
$tail ~bneron/DataBio/Sequences/Nucleique/qr1Large.fasta
...
tgcctaattgttacaaattcattaacagcagtagtgtttaagagctctaagtagctcatacttaaagagtgtttccctct
gcacgtaccaataatctcttagtaagacgactaacttgatgactgagttgttcacaaaacccttccgtagaattatagga
tgtggattttataatacaccgataaaaactactttgaaataggttttcttttcctgtcgtttactgtcagtagctctctg
catagaaatgtcaaataaacagatcttgttttggtttc
it's very useful specially when the files are large.