repo.or.cz
/
xrzperl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated git and svn scripts
[xrzperl.git]
/
tagfs_to_public_videos
blob
e5a0191274df6e79e384936c118400cf376a2252
1
#!/usr/bin/perl -w
2
# $Id$
3
use
strict
;
4
my
@tagfs
= (
'tagfs'
,
'-r'
,
$ENV
{
'HOME'
} .
"/public/videos"
);
5
if
(
@ARGV
)
6
{
7
push
@tagfs
,
@ARGV
;
8
print
STDERR
join
(
" "
,
@tagfs
),
"
\n
"
;
9
exec
(
@tagfs
);
10
}
11
else
12
{
13
print
STDERR
"Usage:
$0
\"
tag1,tag2,tag3,tag 4,tag 5
\"
files...
\n
"
;
14
exit
0
;
15
}
16
17