Skip to content

Instantly share code, notes, and snippets.

@seraphyn
Created January 19, 2012 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seraphyn/1641223 to your computer and use it in GitHub Desktop.
Save seraphyn/1641223 to your computer and use it in GitHub Desktop.
Aus dem ~/bin/
import os
illegal = list('''!"#$%&\'()*+,/:;<=>?@[\\]^_`{|}~ ''')
repl = "_"
for root,dir,files in os.walk(os.getcwd()):
for fi in files:
for ill in illegal:
if ill in fi:
print "found ", os.path.join(root,fi)
newname = fi.replace(ill,repl)
os.rename( os.path.join(root,fi) , os.path.join(root,newname) )
#!/bin/sh
if [ -x /usr/lib/update-notifier/apt-check ]; then
/usr/lib/update-notifier/apt-check 2>&1 | tail -n 1 | sed "s/;.*$/\!/"
elif [ -x /usr/bin/apt-get ]; then
/usr/bin/apt-get -s -o Debug::NoLocking=true upgrade | grep ^Inst | wc -l | sed "s/$/\!/"
elif [ -x /usr/bin/yum ]; then
/usr/bin/yum list updates | grep -c "updates" | sed "s/$/\!/"
else
echo "?"
fi
@thkoch2001
Copy link

compare debian package detox

@seraphyn
Copy link
Author

Very old, never used, nice to know thanks ツ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment