java-tutorials/linux-bash/command-line-arguments/src/main/bash/userReg-positional-paramete...

6 lines
74 B
Bash

#!/bin/bash
echo "Username: $1";
echo "Age: $2";
echo "Full Name: $3";