ignore node cfg files
This commit is contained in:
parent
8e9ef87f0f
commit
b72e88f9ef
2 changed files with 9 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -153,3 +153,4 @@ gajim/
|
|||
blender/
|
||||
ardour7/
|
||||
rstudio/
|
||||
nextjs-nodejs/
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
#!/bin/sh
|
||||
# Flashes USB devices
|
||||
# Requires 'pv'
|
||||
# Guide to flash usb devices
|
||||
|
||||
pv $1 > $2 && sync && echo "Done!"
|
||||
printf "\033[2mcat:\033[0m cat ISO > /dev/SDX\n"
|
||||
printf "\033[2mcp:\033[0m cp ISO /dev/SDX\n"
|
||||
printf "\033[2mdd:\033[0m dd bs=4M if=ISO of=/dev/SDX conv=fsync oflag=direct status=progress\n"
|
||||
printf "\033[2mtee:\033[0m tee < ISO > /dev/SDX\n"
|
||||
printf "\033[2mpv:\033[0m pv ISO > /dev/SDX\n"
|
||||
|
||||
printf "\n\033[2mRemember to run 'sync' afterwards\033[0m\n"
|
||||
|
|
Loading…
Reference in a new issue