1 shell script tagged "swap variables"
- Shell Script to swap values in two variables x and y
#!/bin/bash
# Shell Script to swap values in two variables x and y
# ————————————————————————-
# Copyright (c) 2005 nixCraft project <http://cyberciti.biz/fb/>
# This script is licensed under GNU GPL version 2.0 or above
# ————————————————————————-
# This script is part of nixCraft shell script collection (NSSC)
# Visit http://bash.cyberciti.biz/ for more information.
# ————————————————————————-
echo "Enter value for x : "
read x
echo "Enter [...]
Viewing 1-1 of 1 shell scripts. ( see all popular tags )

