Skip to content

Instantly share code, notes, and snippets.

@ur0n2
ur0n2 / Doskey_Alias_Setting.cmd
Last active April 1, 2020 23:56
Doskey_Alias_Setting.cmd
::2017. 03. 10
::LeeJunHwan
::This commands make to linux environment on Windows OS
::But, We have powershell... and bash shell on windows 10
::Just For Fun!!!
@echo off
doskey ls = dir /W /P $*
doskey ll = dir /A /P $*
doskey cp = copy $*
@ur0n2
ur0n2 / Putty Setting Registry for pretty color
Last active March 14, 2017 12:21
Putty Setting Registry for pretty color set
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings]
"Present"=dword:00000001
"HostName"="192.168.4.13"
"LogFileName"="putty.log"
"LogType"=dword:00000000
"LogFileClash"=dword:ffffffff
"LogFlush"=dword:00000001
"SSHLogOmitPasswords"=dword:00000001
@ur0n2
ur0n2 / mkmmc-android.sh
Last active November 22, 2016 02:31
mkmmc-android.sh for beagle_xm_MMC(4GB)
#!/bin/bash
#editor: LeeJunHwan
EXPECTED_ARGS=1
if [ $# == $EXPECTED_ARGS ]
then
echo "Assuming Default Locations for Prebuilt Images"
$0 $1 Boot_Images/MLO Boot_Images/u-boot.bin Boot_Images/uImage Boot_Images/boot.scr Filesystem/rootfs* Media_Clips START_HERE
exit
fi