1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-09-27 21:51:43 +00:00

Added lncuevana

This commit is contained in:
J.Fernando Sánchez 2012-01-04 03:40:17 +01:00
parent 72c2448793
commit 28b14bc7aa

14
lncuevana.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
# Script to copy Cuevana files to your home directory.
# Tested only with one cuevana instance at a time.
# The video can be played, but I need to test if it's deleted when the flash player is closed.
# @author: balkian
destfile="$HOME/VideoCuevana$$"
info=($(lsof -c /npview/i | grep -i /tmp/flash | awk '{print $2; print $9}'))
dir="/proc/${info[0]}/fd"
file=${info[1]}
#echo "pid" $pid
#echo "file" $file
fdn=$(ls -l $dir | grep $file | awk '{print $8}')
ln -s $dir/$fdn $destfile && echo "Video linked successfully to $destfile." && echo "Enjoy"