Version-Release number of selected component: bash-4.2.45-4.fc20 Additional info: reporter: libreport-2.1.11 backtrace_rating: 4 cmdline: /bin/bash /home/djyb/bin/remove_spaces_rec.sh . - _ crash_function: __gconv_transform_utf8_internal executable: /usr/bin/bash kernel: 3.12.8-300.fc20.x86_64 runlevel: N 5 type: CCpp uid: 500 Truncated backtrace: Thread no. 1 (10 frames) #0 __gconv_transform_utf8_internal at ../iconv/skeleton.c:395 #1 __mbsnrtowcs at mbsnrtowcs.c:94 #2 mbsnrtowcs at /usr/include/bits/wchar2.h:555 #3 xdupmbstowcs2 at xmbsrtowcs.c:180 #4 xdupmbstowcs at xmbsrtowcs.c:291 #5 glob_pattern_p at glob.c:151 #6 glob_vector at glob.c:487 #7 glob_filename at glob.c:1050 #8 shell_glob_filename at pathexp.c:303 #9 glob_expand_word_list at subst.c:9035
Created attachment 864716 [details] File: backtrace
Created attachment 864717 [details] File: cgroup
Created attachment 864718 [details] File: core_backtrace
Created attachment 864719 [details] File: dso_list
Created attachment 864720 [details] File: environ
Created attachment 864721 [details] File: exploitable
Created attachment 864722 [details] File: limits
Created attachment 864723 [details] File: maps
Created attachment 864724 [details] File: open_fds
Created attachment 864725 [details] File: proc_pid_status
Created attachment 864726 [details] File: var_log_messages
Hi and thanks for the report. ABRT's output doesn't give me much to work with. Could you please provide your remove_spaces_rec.sh script? Also, is this a recurring issue, or just a one time crash? Thanks.
(In reply to Ondrej Oprala from comment #12) > Hi and thanks for the report. > ABRT's output doesn't give me much to work with. Could you please provide > your remove_spaces_rec.sh script? > Also, is this a recurring issue, or just a one time crash? > > Thanks. Hi I don't really remember reporting this, could be automatic...? Anyway I cannot find a script with that name, but it could be that I have changed the script name. so here is what I got... hope that helps. Yehiel #!/bin/bash rename() { for i in "$1/"*; do if [ -d "$i" ]; then # cd "$i"; # echo "d pwd=`pwd`"; rename "$i" "$2" "$3"; elif [ -f "$i" ]; then new=`echo $i|sed 's/'$2'/'$3'/g'`; if [ "$new" != "$i" ]; then echo "2=$2; 3=$3; renaming $i -> $new"; mv "$i" $new; fi else #echo "pwd=`pwd`"; echo "$i not a file!"; fi done } echo "renaming $1"; rename "$1" "$2" "$3"