This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# imgurdrop | |
# | |
# Watches a folder (/tmp/imgur) for new files and uploads any new files | |
# in folder to imgur. The imgur URL will then appear in your clipboard. | |
# | |
# Intended to be used as a daemon, via dtach, screen, or simply "imgurdrop &" | |
# | |
# Originally inspired by: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/fstab: static file system information. | |
# | |
# <file system> <mount point> <type> <options> <dump> <pass> | |
proc /proc proc nodev,noexec,nosuid 0 0 | |
#Entry for /dev/sda2 : | |
UUID=9985b8e0-c4d9-45b0-8ae5-5c2edf16186b / ext4 errors=remount-ro 0 1 | |
#Entry for /dev/sda5 : | |
UUID=70205578-8c03-42c9-9d7c-18c5755550ca none swap sw 0 0 |
NewerOlder