This file contains 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
while true; do for voice in `say -v '?' | awk '{print $1}'`; do tput bel; say -v $voice "Beep"; printf "\a"; done ; done |
This file contains 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
#Simple executeable solution for CSVs (Does not include header) | |
#foreach ($file in Get-ChildItem -path ".\" -filter "*.csv") {gc $file | select -Skip 1 | UNICORNS.csv} | |
$path = Read-Host 'Enter the path to the folder containing the CSV files (Ex: ".\" is the current directory)' | |
if(!$path) {$path = ".\"} | |
$match = Read-Host 'Enter REGEX Match filter (Ex: *.csv)' | |
if(!$match) {$match = "*.csv"} | |
$name = Read-Host 'Enter Name of Outputfile (I would suggest naming it UNICORNS.csv)' | |
# Get all the files before creating output |
This file contains 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/sh | |
SHORTCUT="[Desktop Entry] | |
Name=Sublime Text 3 | |
Comment=Edit text files | |
Exec=/opt/sublime_text_3/sublime_text | |
Icon=/opt/sublime_text_3/Icon/128x128/sublime-text.png | |
Terminal=false | |
Type=Application | |
Encoding=UTF-8 | |
Categories=Utility;TextEditor;" |