Question: Create a script such that it is a command that has the same effect as the "less" command (implement the script by calling "less").
What I wrote:
#! /bin/bash
for index in "$@"
do
less "$index"
done
Apparently this is wrong. Any suggestions?