unix
UNIX KSH scripting tutorial
4 hours ago by Nossidge
KSH tutorial. Kind of shitty English, but understandable.
programming
UNIX
KSH
4 hours ago by Nossidge
HowTo: Linux / UNIX List Just Directories Or Directory Names
7 hours ago by ncrash
SVN 백업 스크립트 작성 중에 디렉토리 명칭만 가져와서 처리해야하는 경우가 있어서 검색한 결과
To get just file names without the long list data:
ls -l | grep ‘^d’ | awk ‘{ print $9 }’
Or
for foo in *; do if [ -d $foo ]; then print -n ” $foo”; else false; fi; done
linux
unix
commands
directory
To get just file names without the long list data:
ls -l | grep ‘^d’ | awk ‘{ print $9 }’
Or
for foo in *; do if [ -d $foo ]; then print -n ” $foo”; else false; fi; done
7 hours ago by ncrash
Example syntax for Secure Copy (scp)
13 hours ago by laze
Because as I get older, I get more sucktastic remembering syntax for commands I only occasionally use.
scp
unix
examples
13 hours ago by laze
Working With Unix Processes — The only book addressing Unix programming specifically for Ruby developers
18 hours ago by bascht
This book fills a gap that a lot of developers have these days; it shouldn’t require writing C code to learn the UNIX fundamentals. This book proves that to be true.
book
programming
processes
unix
ruby
18 hours ago by bascht
Your Bash Prompt Needs This – jonisalonen.com
yesterday by jmartindf
Then you hit the Up key to retrieve very long command from the history and try to edit it, only to discover that the text you see on the screen is shifted by two characters from where it appears to be, and you can’t see where you’re typing anymore. A major annoyance!
Here’s how you can fix it: glue the bash prompt always go to the first column.
bash
unix
howto
Here’s how you can fix it: glue the bash prompt always go to the first column.
yesterday by jmartindf
Meld
yesterday by der_dennis
is a visual diff and merge tool targeted at developers. Meld helps you compare files, directories, and version controlled projects. It provides two- and three-way comparison of both files and directories, and has support for many popular version control systems.
versioncontrol
diff
merge
git
mercurial
subversion
svn
linux
unix
mac
osx
windows
python
yesterday by der_dennis
Debu.gs: Inferno Part 1: Shell
2 days ago by genieyclo
Inferno has, hands down, the best shell I have ever used.
“But that’s a bold statement, and who the hell are you?”
plan9
unix
shell
inferno
textlife
“But that’s a bold statement, and who the hell are you?”
2 days ago by genieyclo