summaryrefslogtreecommitdiffstats
path: root/fish/tilde.c
Commit message (Collapse)AuthorAgeFilesLines
* Convert all TABs-as-indentation to spaces.Jim Meyering2009-08-031-3/+3
| | | | | | | | | | | Do it by running this command: [exempted files are matched via .x-sc_TAB_in_indentation] git ls-files \ | pcregrep -vf .x-sc_TAB_in_indentation \ | xargs pcregrep -l '^ *\t' \ | xargs perl -MText::Tabs -ni -le \ '$m=/^( *\t[ \t]*)(.*)/; print $m ? expand($1) . $2 : $_'
* guestfish: Add tilde expansion for paths (RHBZ#511372).Richard Jones2009-07-151-0/+121
This commit adds tilde expansion for local users in guestfish: ><fs> echo "~" ~ ><fs> echo ~ /home/rjones ><fs> echo ~foo ~foo ><fs> echo ~rjones/bar /home/rjones/bar ><fs> echo ~roo ~roo ><fs> echo ~root/foo /root/foo ><fs> echo ~root /root