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 | |
rootdir="$PWD" | |
find "$rootdir" -type f -name '*.zip' | while read file;do # find all .zip files in the directory | |
cd "$(dirname "$file")" | |
if [ "$(dirname "$file")" = "$PWD" ];then # if the file found is in the same directory as defined "rootdir" | |
mkdir "$(basename "$file" | cut -d. -f1)" | |
cd "$(basename "$file" | cut -d. -f1)" | |
unzip -O cp949 -n "$file" # unzip the file | |
mv "$file" "$file".tododelete | |
else |
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 | |
###################################################################################### | |
# script by ischo. | |
# http://www.ischo.net | |
# mail:[email protected] | |
# script description : | |
# unzip files into it's own sub-directory names | |
###################################################################################### | |
FILELIST=`ls -l *.zip | awk {'print $9'}` |
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
begin remote | |
name atrix_multidock_remote | |
bits 8 | |
flags RC6|CONST_LENGTH | |
eps 30 | |
aeps 100 | |
header 2639 911 | |
one 420 464 |
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/lirc/hardware.conf | |
# | |
#Chosen Remote Control | |
REMOTE="None" | |
REMOTE_MODULES="meson-ir" | |
REMOTE_DRIVER="default" | |
REMOTE_DEVICE="/dev/lirc0" | |
REMOTE_SOCKET="" | |
REMOTE_LIRCD_CONF="" | |
REMOTE_LIRCD_ARGS="" |