View gist:3b47f84fac0a8e4f5b7bffc9b5109647
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
# | |
# Export ZoneMinder events (images) into MP4 file | |
# Execute this script inside events/ directory | |
# directory where MP4 videos should be exported | |
EXPORT_VIDEO_PATH="/home/user/zoneminder/mp4" | |
for camera in $(find -maxdepth 1 -type l |sort); do |
View wp-admin-add.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Adicionar usuario admin | |
----------- | |
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES ('749', 'czd', MD5('123456'), 'Your Name', 'fabio@doo.is', 'http://www.test.com/', '2011-06-07 00:00:00', '', '0', 'Your Name'); | |
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, '749', 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'); | |
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, '749', 'wp_user_level', '10'); |
View bash-findmvsequential.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name '*.jpg' \ | |
> | awk 'BEGIN{ a=0 }{ printf "mv \"%s\" %04d.jpg\n", $0, a++ }' \ | |
> | bash | |
# fonte: http://stackoverflow.com/questions/3211595/renaming-files-in-a-folder-to-sequential-numbers |
View iptv-reverbtv.m3u
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#EXTM3U | |
#EXTINF:0 group-title="TV", ALL SPORTS | |
http://173.236.10.10:1935/dgrau/dgrau/live.m3u8 | |
#EXTINF:0 group-title="TV", BAND | |
http://evp.mm.uol.com.br:1935/bandpracas/bandcidaders/playlist.m3u8 | |
#EXTINF:0 group-title="TV", Band Sports | |
http://evp.mm.uol.com.br:1935/geob_terraviva/operadoras/live.m3u8?BRASILIPTV |
NewerOlder