NameSizeMode
..
.local/bin/mkimg 310 bytes ?rwxr-xr-x
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
#!/bin/sh
# Creates a MS-DOS compatible disk image
# 
# Copyright (C) 2023 Pablo
# Free use of this software is granted under the terms of the GPL-3.0 License

case "$1" in
  -h|--help)
    echo 'Usage: mkimg FILE'
    ;;
  *)
    dd if=/dev/zero of="$1" count=1440 bs=1k
    /sbin/mkfs.msdos "$1"
    ;;
esac