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 | |
clear | |
#rm -r lasttrip-converted/ # Debug to delete last try | |
originpath=`readlink -f "$1"` | |
destinpath=`readlink -f "$2"` | |
function showhelp { |
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
#!/usr/bin/env python3 | |
from sys import argv, exit | |
from os import popen | |
from os.path import join, expanduser as get_path | |
from re import search | |
if '-h' in argv or '--help' in argv: | |
print(''' | |
Executing this program will invert dark/light colors |
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
#!/usr/bin/env python3 | |
# from pdb import set_trace as bkp | |
from sys import argv, exit | |
from os import listdir, path, mkdir, utime | |
from json import loads as to_dict | |
from datetime import datetime as date | |
if '-h' in argv or '--help' in argv: | |
print(''' |
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
" no compatible with vi | |
set nocompatible | |
" color syntax | |
"syntax enable | |
" real colors | |
set termguicolors | |
" for netrw | |
filetype plugin on | |
" show number |