mencetak argumen dalam skrip


#!/bin/bash

# example of using arguments to a script
echo "arg 1: $1"
echo "arg 2: $2"
echo "Total number of arguments is $#" 
Vternal3