6 lines
92 B
Bash
6 lines
92 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "Entered file will be copied"
|
||
|
|
||
|
cp "$1" "duplicate_$1"
|
||
|
echo "File duplicated"
|