• The forum software that supports hummy.tv will be upgraded to XenForo 2.3 on Wednesday the 20th of November 2024 starting at 7pm

    There will be some periods where the forum is unavailable, please bear with us. More details can be found in the upgrade thread.

Independent Crop

I'm looking for a script too which will work through a folder of files and crop the file where there are 6 or more bookmarks in the file. ...
This shell function will detect the condition where a recording has at least 6 bookmarks:
Code:
has6bmks() {
    # read bookmarks into 5 dummy vars and then a 6th
    hmt -bookmarks "$1" | { read -r  _ _ _ _ _ x6 && [ -n "$x6" ]; }
}
Example of use:
Code:
if has6bmks "/path/to/recording"; then
    echo "recording has at least 6 bookmarks"
else
    echo "not enough bookmarks"
fi
 
Thanks for the info, I'll piece this into a text / script file and share here first. To execute a script file from the webshel... do I follow these instructions?
  1. Write the script in the file using an editor.
  2. Make the script executable with command chmod +x <fileName>.
  3. Run the script using ./<fileName>.
Sorry if this may seem a lame question but I'm newbie to linux stuff.

Thanks

Rodp
 
Yes, but WebIF >> Diagnostics >> File Editor usefully has "create file" and "make executable" buttons.
 
Back
Top