mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-21 19:52:29 +00:00
Added cuevana script
This commit is contained in:
parent
a18098a05d
commit
72c2448793
13
cpcuevana.sh
Executable file
13
cpcuevana.sh
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Script to copy Cuevana files to your home directory.
|
||||||
|
# Tested only with one cuevana instance at a time.
|
||||||
|
# @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}')
|
||||||
|
cp $dir/$fdn $destfile && echo "Video copied successfully to $destfile." && echo "Enjoy"
|
Loading…
Reference in New Issue
Block a user