#!/bin/bash # shifter.sh - demonstrate the shift command # # input: any arguments # output: output the argument array $@ # # CS50, Spring 2022 echo I see $# arguments: "$@" shift echo now I see $# arguments: "$@" exit 0