Skip to main content
added 34 characters in body
Source Link
Kevin
  • 3.1k
  • 1
  • 16
  • 21

Getting there by a round-aboutSeems appropriate:

ls --help | grep "P,-i E,"DON'T" Z"/bin/lesspipe | cutwc -c 37l ; headgrep -ni 3"PANIC" /etcusr/passwd share/pyshared/mx/Log.py | tailhead -n 1 | cut -cd 7'=' -f 2 | tr -d ' ' 

Output:

4 2 

Ubuntu 12.04, 64-bit Desktop

Getting there by a round-about:

ls --help | grep "P, E, Z" | cut -c 37 ; head -n 3 /etc/passwd  | tail -n 1 | cut -c 7 

Output:

4 2 

Ubuntu 12.04, 64-bit Desktop

Seems appropriate:

grep -i "DON'T" /bin/lesspipe | wc -l ; grep -i "PANIC" /usr/share/pyshared/mx/Log.py | head -n 1 | cut -d '=' -f 2 | tr -d ' ' 

Output:

4 2 

Ubuntu 12.04, 64-bit Desktop

Source Link
Kevin
  • 3.1k
  • 1
  • 16
  • 21

Getting there by a round-about:

ls --help | grep "P, E, Z" | cut -c 37 ; head -n 3 /etc/passwd | tail -n 1 | cut -c 7 

Output:

4 2 

Ubuntu 12.04, 64-bit Desktop