Dotfiles, utilities, and other apparatus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
292 B

#!/bin/sh
# Copy the path stored in ~/.yanked_file to the current working directory.
# (See also: yank, put-mv.)
if [ ! -e ~/.yanked_file ]; then
echo "no currently yanked file"
exit 66
fi
unyank_path=`cat ~/.yanked_file`
echo "copying '$unyank_path' to '$PWD'"
cp -r "$unyank_path" .