403Webshell
Server IP : 93.86.61.54  /  Your IP : 216.73.216.60
Web Server : Apache/2.4.62 (Ubuntu)
System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64
User : www-data ( 33)
PHP Version : 8.4.22
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/doc/wodim/examples/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/doc/wodim/examples/burnstuff
#!/bin/sh
# (C) Eduard Bloch, License: BSD, 3-clause
# very simple script to burn files on-the-fly in SAO mode;
# either from a certain directory, or from a list with graft-points
# ISO name is generated from the basename of the list/directory

set -e

case "$1" in
  *.list)
   name=${1%.list}
   set -- -D -graft-points -path-list "$1"
   ;;
  *)
   name="$1"
   ;;
esac

MOPTS=${MOPTS:-" -joliet-long -r -q -f -V $name "}
COPTS=${COPTS:-" fs=64m gracetime=5 -v -sao speed=16 -eject -multi -v -force - "}

SIZE=$(genisoimage $MOPTS -print-size "$@")s

echo "genisoimage $MOPTS $@ | wodim tsize=$SIZE $COPTS"
genisoimage $MOPTS "$@" | wodim tsize=$SIZE $COPTS

Youez - 2016 - github.com/yon3zu
LinuXploit