carbon-config

config submodule of carbon-core-system
git clone https://ccx.te2000.cz/git/carbon-config
Log | Files | Refs

fstab_to_fs (134B)


      1 #!/bin/sh
      2 awk '
      3 /^[ \t]*#/ || !NF {next}
      4 {printf "%s\n\tsource=%s\n\ttype=%s\n\toptions=%s\n\n", $2, $1, $3, $4}
      5 ' "${1:-/etc/fstab}"