出力の拡張子を抽出して新しいリストを作成する方法

出力の拡張子を抽出して新しいリストを作成する方法

こんにちは。cdemu を使用してイメージをマウントするためのスクリプトを作成しようとしています (gcdemu が機能しないため)。

サポートされている形式のリストを作成しようとしています

$ cdemu enum-parsers
Supported parsers:
  PARSER-MDX: MDX Image Parser
    application/x-mdx: DaemonTools images (*.mdx, *.mds)
  PARSER-HD: Hard-disk Image Parser
    application/x-apple-diskimage: Apple Disk image (*.cdr)
    application/x-apple-diskimage: Apple Disk image (*.smi)
    application/x-apple-diskimage: Apple Disk image (*.img)
  PARSER-READCD: READCD Image Parser
    application/x-cd-image: readcd images (*.toc)
  PARSER-ISO: ISO Image Parser
    application/x-cd-image: ISO images (*.iso, *.bin, *.img)
    audio/x-wav: WAV audio files (*.wav)
  PARSER-XCDROAST: X-CD-Roast Image Parser
    application/x-xcdroast: X-CD-Roast images (*.toc)
  PARSER-CCD: CCD Image Parser
    application/x-ccd: CloneCD images (*.ccd)
  PARSER-C2D: C2D Image Parser
    application/x-c2d: WinOnCD images (*.c2d)
  PARSER-CDI: CDI Image Parser
    application/x-cdi: DiscJuggler images (*.cdi)
  PARSER-B6T: B6T Image Parser
    application/x-b6t: BlindWrite 5/6 images (*.b5t, *.b6t)
  PARSER-NRG: NRG Image Parser
    application/x-nrg: Nero Burning Rom images (*.nrg)
  PARSER-CUE: CUE Image Parser
    application/x-cue: CUE images (*.cue)
  PARSER-TOC: TOC Image Parser
    application/x-cdrdao-toc: cdrdao images (*.toc)
  PARSER-MDS: MDS Image Parser
    application/x-mds: Alchohol 120% images (*.mds)
    application/x-xmd: GameJack images (*.xmd)
  PARSER-CIF: CIF Image Parser
    application/x-cif: Adaptec Easy CD/DVD Creator images (*.cif)

サポートされているフォーマットリストを抽出し、次のような新しい配列に配置する必要があります。

SuportedFormats=(
mdx
mds
cdr
smi
img
toc
ccd
c2d
cdi
b5t
b6t
nrg
cue
xmd
cif)

ただし、フォーマット リストは cdemu のバージョンによって変わる可能性があります。

もう一つは、大文字の拡張子を小文字に変更したいです。

tr '[:upper:]' '[:lower:]' "${1##*.}"

でも、どうやって使うのか分からない

答え1

ファイル拡張子のリストを取得するには(GNU grep が必要です):

$ cdemu enum-parsers | grep -oP '(?<=\*\.)[^,)]*'
mdx
mds
cdr
smi
img
toc
iso
bin
img
wav
toc
ccd
c2d
cdi
b5t
b6t
nrg
cue
toc
mds
xmd
cif

これらの拡張機能を配列に配置するには:

$ SupportedFormats=($(cdemu enum-parsers | grep -oP '(?<=\*\.)[^,)]*'))

正しい配列があることを確認するには、次を実行しますdeclare -p

$ declare -p SupportedFormats
declare -a SupportedFormats=([0]="mdx" [1]="mds" [2]="cdr" [3]="smi" [4]="img" [5]="toc" [6]="iso" [7]="bin" [8]="img" [9]="wav" [10]="toc" [11]="ccd" [12]="c2d" [13]="cdi" [14]="b5t" [15]="b6t" [16]="nrg" [17]="cue" [18]="toc" [19]="mds" [20]="xmd" [21]="cif")

小文字に変換する

例の拡張子はすべて小文字でした。本当に小文字に変換する必要がある場合は、次を使用できますtr

SupportedFormats=($(cdemu enum-parsers | grep -oP '(?<=\*\.)[^,)]*' | tr '[:upper:]' '[:lower:]'))

trは Unicode には対応していません。文字列に Unicode が含まれている場合は、sedこちらの方が適しています (GNU sed が必要です)。

SupportedFormats=($(cdemu enum-parsers | grep -oP '(?<=\*\.)[^,)]*' | sed -E 's/[[:upper:]]/\L&/g'))

答え2

まあ、私はスクリプトを作成しようとしましたが、Xfce 4.12とThunarで動作しますが、動作しません

 #!/usr/bin/env bash

echo '
Autor ----------------> Inukaze ( Venezuela )
Sitio ----------------> inukaze.wordpress.com
Correo-E -------------> [email protected]
Licencia -------------> GPL 2

******* Inicio : Acerca de este Script ********

 Este Mini-Script es para poder Montar
 Imagen(es) de Disco(s) Compacto(s)
 de forma sencilla. sin necesidad
 del fallido "gcdemu" (Solo me da errores)

******** Fin : Acerca de este Script **********'

# NOTAS
#
# 1 - Verificar el Demonio
# 2 - Verificar que existe por lo menos una unidad virtual, en caso de que no, crear una
# 3 - En caso de que si exista, pero ya este montada una imagen, desmontar la imagen para montar la más nueva
#
# Patron de "Imagen" y "Otros Archivos" para Thunar : 
# *.mdx;*.mds;*.cdr;*.smi;*.img;*.toc;*.ccd;*.c2d;*.cdi;*.b5t;*.b6t;*.nrg;*.cue;*.xmd;*.cif;*.iso

# Asegurarse de que el demonio esta en ejecucion
DEMONIO=$(ps -A | grep cdemu-daemon | awk '{print $1}')
if [ "$DEMONIO" == "$(pgrep cdemu-daemon)" ] ; then
       DEMONIO=$(echo "Demonio cargado y funcionando") ; echo "$DEMONIO"
    else zenity --error --text 'El Demonio "cdemu" no esta cargado, Abortando.'; exit 1
fi

FormatoSoportado=($(cdemu enum-parsers | grep -oP '(?<=\*\.)[^,)]*'))
declare -p FormatoSoportado 2&>/dev/null
#Minusculas=$(sed -E 's/[[:upper:]]/\L&/g')

# Comprobar que existe por lo menos un dispositivo virtual, si no existe crear uno
DISPOSITIVO=$(cdemu --bus session status | grep "0" | tail -n1 | awk '{print $1}')
if [ ! $DISPOSITIVO ]; then
    cdemu add-device
fi

DISPOSITIVO=$(cdemu --bus session status | grep -E 'LOADED|True' | awk '$2=="True"' | awk '{print $2}')
if [ "$DISPOSITIVO" == "True" ]; then
    #ARCHIVO=$(cdemu --bus session status | awk '{ print $3 $6 }' | tail -n1)
    cdemu unload 0
    #zenity --error --text "No puedes cargar más imagenes. Dispositivo Ocupado.\n$ARCHIVO"; exit 1
fi

DISPOSITIVO=$(cdemu --bus session status | grep -E 'LOADED|False' | awk '$2=="False"' | awk '{print $2}')
if [ "$DIPOSITIVO" == "False" ]; then
     NOMBRE="$(basename "$@")"
     NOMBRE=$(echo "$NOMBRE" | sed 's/[*.*].*//')
     RUTA=$(echo $(cd $(dirname "$1") && pwd -P)/$(basename "$1"))
     cdemu load 0 "$NOMBRE.${#FormatoSoportado[@]}"
fi

私のアイデアはシンプルです

  1. cdemu-daemon が実行中であることを確認する
  2. デバイスが存在するかどうか確認し、存在しない場合は作成します
  3. デバイスが存在する場合は、イメージがマウントされているか確認し、イメージをアンマウントします。
  4. 最新のイメージをマウントする

関連情報