summaryrefslogtreecommitdiff
path: root/.bashrc.functions
blob: 60f59c273c22b7ce87d137a22fa67d11fc87ed6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
print_prompt_nl_if_needed() {
  local pos
  local char
  local ok=0
  local save=$(stty -g)

  stty -echo -icanon
  echo -en '\e[6n' 1>&2
  #response format: \e[n;mR (m is needed)
  while true 
  do
    #char=$(dd bs=1 count=1 2>/dev/null)
    char=$(head -c1)
    [[ $char == 'R' ]] && break
    [[ $ok -eq 1 ]]    && pos="${pos}${char}"
    [[ $char == ';' ]] && ok=1
  done

  stty $save
  [[ $pos -gt 1 ]] && echo 1>&2
}

qjoypad() {
  $(which qjoypad) --device /dev/input $@
}

jdownloader() {
  $(java-config --java) -jar ~/Desktop/jdownloader/JDownloader.jar
}

start() {
  #local dir=/home/ben/coding/cpp/starter/
  #"${dir}"start "${dir}"command.sh $@ >> /dev/null 2>&1
#  nohup "$@" &>/dev/null &
  /home/ben/coding/cpp/starter/start \
    bash -c "source ~/.bashrc.functions; ${@} >> /dev/null 2>&1"
}

ts() {
  start /opt/bin/TeamSpeak $@
}

eworld() {
  local packages=$(/usr/bin/eix -u --only-names)
  [[ -n $packages ]] && /usr/bin/sudo /usr/bin/emerge --verbose --ask --update --oneshot $packages
}



uflag() {
  local use=`echo ${1} | sed -n "s/[^a-Z0-9\-]//g; p"`
  #  [[ -n $use ]] && sed -n "/\(^\|:\)$use -/p" /usr/portage/profiles/use* | grep --color $use
  files="/usr/portage/profiles/use.desc /usr/portage/profiles/desc/*"
  echo "global use flags (searching: ${use})"
  [[ -n $use ]] && sed -n "s~^\(\(.*/.*\):\)\?\(${use} \)\(.*\)$~&~p" $files

  echo -e "\nlocal useflags (searching: ${use})"
  [[ -n $use ]] && sed -n "s~^\(\(.*/.*\):\)\?\(${use}\)[[:space:]]*-[[:space:]]*\(.*\)$~\3 (\2):\n\4~p" /usr/portage/profiles/use.local.desc
}

tstart() {
  [[ -n `ps -C $1 | sed -n 's/^.\([0-9][0-9]*\).*$/\1/p'` ]] && killall $1 || $1
}

up() {
  local server=netdirekt

  if [[ -f $1 ]]; then 
    local rand=`date +%s | md5sum | sed -n 's/^\(...\).*$/\1/p'`
    local name="${rand}-`basename $1`"
    scp -q $1 $server:"/home/benjamin/uploads/${name}" || exit

    local cmd="sudo chown lighttpd:lighttpd /home/benjamin/uploads/${name}"
    ssh -q $server $cmd || exit

		local ext=$(echo $1 | sed "s/^.*\.\([^\.]*\)$/\\1/")
		local types="dummy txt $(sed -n "s/^\$ext(\(.*\))=\(.*\)$/\\1 \\2/p" /etc/highlight/filetypes.conf) dummy"

		[[ -n $(echo $types | grep " $ext ") ]] && \
				local url="http://89.149.199.86/highlight/${name}" || \
				local url="http://89.149.199.86/filebase/files/${name}"

    echo -n $url | xclip -selection clipboard
    echo -n $url | xclip -selection primary
    echo $url
  fi
}

function calc() { echo "$*" | bc; }

pdftojpeg() {
  if [ -z $2 ]  || [ $1 = "--help" ] || [ $1 = "-h" ]; then
    echo "Usage: pdftojpeg <input.pdf> <output.jpg>"
  elif [ -e $2 ]; then
    echo "Error: $2 existiert bereits!"
  else
    pdftoppm -l 1 "$1" | convert - -resize "176x248" "$2"
    #pdftoppm -l 1 -scale-to 248 "$1" -- | cjpeg > "$2"
  fi
}

unpack() {
	local srcdir
	local x
	local y
	local myfail
	local tar_opts=""
	[ -z "$*" ] && die "Nothing passed to the 'unpack' command"

	for x in "$@"; do
		echo ">>> Unpacking ${x} to ${PWD}"
		y=${x%.*}
		y=${y##*.}

#		if [[ ${x} == "./"* ]] ; then
#			srcdir=""
#		elif [[ ${x} == ${DISTDIR%/}/* ]] ; then
#			die "Arguments to unpack() cannot begin with \${DISTDIR}."
#		elif [[ ${x} == "/"* ]] ; then
#			die "Arguments to unpack() cannot be absolute"
#		else
#			srcdir="${DISTDIR}/"
#		fi
		[[ ! -s ${x} ]] && die "${x} does not exist"

		myfail="failure unpacking ${x}"
		case "${x##*.}" in
			tar)
				tar xof "${x}" ${tar_opts} || die "$myfail"
				;;
			tgz)
				tar xozf "${x}" ${tar_opts} || die "$myfail"
				;;
			tbz|tbz2)
				bzip2 -dc "${x}" | tar xof - ${tar_opts}
				#assert "$myfail"
				;;
			ZIP|zip|jar)
				unzip -qo "${x}" || die "$myfail"
				;;
			gz|Z|z)
				if [ "${y}" == "tar" ]; then
					tar zoxf "${x}" ${tar_opts} || die "$myfail"
				else
					gzip -dc "${x}" > ${x%.*} || die "$myfail"
				fi
				;;
			bz2|bz)
				if [ "${y}" == "tar" ]; then
					bzip2 -dc "${x}" | tar xof - ${tar_opts}
					assert "$myfail"
				else
					bzip2 -dc "${x}" > ${x%.*} || die "$myfail"
				fi
				;;
			7Z|7z)
				local my_output
				my_output="$(7z x -y "${x}")"
				if [ $? -ne 0 ]; then
					echo "${my_output}" >&2
					die "$myfail"
				fi
				;;
			RAR|rar)
				unrar x -idq -o+ "${x}" || die "$myfail"
				;;
			LHa|LHA|lha|lzh)
				lha xfq "${x}" || die "$myfail"
				;;
			a|deb)
				ar x "${x}" || die "$myfail"
				;;
			lzma)
				if [ "${y}" == "tar" ]; then
					lzma -dc "${x}" | tar xof - ${tar_opts}
					assert "$myfail"
				else
					lzma -dc "${x}" > ${x%.*} || die "$myfail"
				fi
				;;
			*)
				echo "unpack ${x}: file format not recognized. Ignoring."
				;;
		esac
	done
#	# Do not chmod '.' since it's probably ${WORKDIR} and PORTAGE_WORKDIR_MODE
#	# should be preserved.
#	find . -mindepth 1 -maxdepth 1 ! -type l -print0 | \
#		${XARGS} -0 chmod -fR a+rX,u+w,g-w,o-w
}



die() {
	echo " * ${*:-(no error message)}"
}