7 lines
83 B
Bash
Executable file
7 lines
83 B
Bash
Executable file
#!/bin/sh
|
|
|
|
TRASH_DIR=trash
|
|
|
|
basename=$(basename $1)
|
|
mv $1 ${TRASH_DIR}/${basename}
|