keyboards/zorne/flash.fish

18 lines
344 B
Fish
Raw Normal View History

2021-04-12 16:24:12 -05:00
#!/usr/bin/env fish
test (whoami) != root && begin
echo must be root
exit 1
end
mkdir -p /tmp/flashmnt
echo Mounting $argv[1] to /tmp/flashmnt...
mount $argv[1] /tmp/flashmnt # arg 1
echo Copying $argv[2] to /tmp/flashmnt...
cp $argv[2] /tmp/flashmnt
echo Syncing...
sync
echo Unmounting /tmp/flashmnt...
2021-04-12 21:58:25 -05:00
umount -R /tmp/flashmnt
2021-04-12 16:24:12 -05:00
echo Done!