6 lines
92 B
Bash
Raw Normal View History

2025-01-24 10:06:07 +05:30
#!/bin/sh
echo "Entered file will be copied"
cp "$1" "duplicate_$1"
echo "File duplicated"